We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acef604 commit b147799Copy full SHA for b147799
include/boost/array.hpp
@@ -395,14 +395,6 @@ namespace boost {
395
return arg.elems;
396
}
397
398
- template <class It> std::size_t hash_range(It, It);
399
-
400
- template<class T, std::size_t N>
401
- std::size_t hash_value(const array<T,N>& arr)
402
- {
403
- return boost::hash_range(arr.begin(), arr.end());
404
- }
405
406
template <size_t Idx, typename T, size_t N>
407
BOOST_CXX14_CONSTEXPR T &get(boost::array<T,N> &arr) BOOST_NOEXCEPT {
408
BOOST_STATIC_ASSERT_MSG ( Idx < N, "boost::get<>(boost::array &) index out of range" );
0 commit comments