annotate DEPENDENCIES/generic/include/boost/functional/hash/hash_fwd.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1
Chris@16 2 // Copyright 2005-2009 Daniel James.
Chris@16 3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
Chris@16 4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 5
Chris@16 6 // Based on Peter Dimov's proposal
Chris@16 7 // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf
Chris@16 8 // issue 6.18.
Chris@16 9
Chris@16 10 #if !defined(BOOST_FUNCTIONAL_HASH_FWD_HPP)
Chris@16 11 #define BOOST_FUNCTIONAL_HASH_FWD_HPP
Chris@16 12
Chris@101 13 #include <boost/config.hpp>
Chris@101 14 #if defined(BOOST_HAS_PRAGMA_ONCE)
Chris@101 15 #pragma once
Chris@16 16 #endif
Chris@16 17
Chris@16 18 #include <cstddef>
Chris@16 19 #include <boost/detail/workaround.hpp>
Chris@16 20
Chris@16 21 namespace boost
Chris@16 22 {
Chris@16 23 template <class T> struct hash;
Chris@16 24
Chris@16 25 template <class T> void hash_combine(std::size_t& seed, T const& v);
Chris@16 26
Chris@16 27 template <class It> std::size_t hash_range(It, It);
Chris@16 28 template <class It> void hash_range(std::size_t&, It, It);
Chris@16 29
Chris@16 30 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
Chris@16 31 template <class T> inline std::size_t hash_range(T*, T*);
Chris@16 32 template <class T> inline void hash_range(std::size_t&, T*, T*);
Chris@16 33 #endif
Chris@16 34 }
Chris@16 35
Chris@16 36 #endif