12345678910111213141516171819 |
- #ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
- #define BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
- #include <limits>
- namespace boost
- {
- namespace hash_detail
- {
- template <class T>
- struct limits : std::numeric_limits<T> {};
- }
- }
- #endif
|