diff --git a/include/boost/functional/hash/hash.hpp b/include/boost/functional/hash/hash.hpp index 30be81d..e1f01b7 100644 --- a/include/boost/functional/hash/hash.hpp +++ b/include/boost/functional/hash/hash.hpp @@ -425,7 +425,7 @@ namespace boost template struct inner { - static std::size_t call(Array& v) + static std::size_t call(Array const& v) { const int size = sizeof(v) / sizeof(*v); return boost::hash_range(v, v + size); @@ -469,7 +469,7 @@ namespace boost namespace hash_detail { template <> - struct hash_impl + struct hash_impl { template struct inner