From: David Abrahams (abrahams_at_[hidden])
Date: 2001-02-19 11:34:34


I notice this snippet in detail/arithmetic_traits.hpp:

# if (defined(ULLONG_MAX) || defined(ULONG_LONG_MAX))
template <> struct is_integral<unsigned long long>
{ BOOST_STATIC_CONSTANT(bool, value = true); };
template <> struct is_integral<long long>
{ BOOST_STATIC_CONSTANT(bool, value = true); };
#endif

But I see no #include <climits>. Is that OK?

-Dave