Merge pull request #3 from boostorg/pull_request/remove_hash_fwd

Replace inclusion of hash_fwd.hpp with a declaration of hash_range. Patch from Peter Dimov.
This commit is contained in:
Marshall Clow
2015-01-08 14:10:08 -08:00

View File

@ -49,7 +49,6 @@
// Handles broken standard libraries better than <iterator>
#include <boost/detail/iterator.hpp>
#include <boost/throw_exception.hpp>
#include <boost/functional/hash_fwd.hpp>
#include <algorithm>
// FIXES for broken compilers
@ -412,6 +411,7 @@ namespace boost {
}
#endif
template <class It> std::size_t hash_range(It, It);
template<class T, std::size_t N>
std::size_t hash_value(const array<T,N>& arr)