From d1781f09d2c60a151fef4ec0652492ca58228c8e Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Mon, 16 Apr 2001 13:32:54 +0000 Subject: [PATCH] allow for ULONGLONG_MAX as well [SVN r9795] --- include/boost/integer_traits.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/boost/integer_traits.hpp b/include/boost/integer_traits.hpp index e853d91..ba4ef27 100644 --- a/include/boost/integer_traits.hpp +++ b/include/boost/integer_traits.hpp @@ -140,6 +140,17 @@ class integer_traits : public std::numeric_limits, public detail::integer_traits_base { }; +#elif defined(ULONGLONG_MAX) +template<> +class integer_traits + : public std::numeric_limits, + public detail::integer_traits_base +{ }; +template<> +class integer_traits + : public std::numeric_limits, + public detail::integer_traits_base +{ }; #endif } // namespace boost