limits.hpp 511 B

12345678910111213141516171819
  1. // Copyright 2005-2009 Daniel James.
  2. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
  5. #define BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
  6. #include <limits>
  7. namespace boost
  8. {
  9. namespace hash_detail
  10. {
  11. template <class T>
  12. struct limits : std::numeric_limits<T> {};
  13. }
  14. }
  15. #endif // #ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER