Addressing #178: wrong return type for function.

This commit is contained in:
Neil MacIntosh 2015-11-30 18:20:14 -08:00
parent e10d2e3028
commit f76f739805

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