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
5#ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
6#define BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
7
8#include <limits>
9
10namespace boost
11{
12 namespace hash_detail
13 {
14 template <class T>
15 struct limits : std::numeric_limits<T> {};
16 }
17}
18
19#endif // #ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER
20

source code of boost/libs/container_hash/include/boost/container_hash/detail/limits.hpp