1
0
mirror of https://github.com/microsoft/GSL.git synced 2025-04-26 18:55:32 -04:00

Merge pull request from neilmacintosh/dev/neilmac/bugfix

Addressing : wrong return type for function.
This commit is contained in:
Neil MacIntosh 2015-11-30 18:26:55 -08:00
commit 8e744b2671

@ -327,9 +327,9 @@ namespace details
}
template <typename T, size_t Dim>
bool contains(const T&) const
size_type contains(const T&) const
{
return false;
return -1;
}
size_type elementNum(size_t) const noexcept { return 0; }