Merge pull request #217 from neilmacintosh/dev/neilmac/bugfix

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

View File

@ -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; }