From eee6dfa4d9d610e4dd24aa2d3304f71bf6751ad4 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Fri, 7 Sep 2001 18:49:12 +0000 Subject: [PATCH] avoid "long long" with SunCC (Gennadiy E. Rozental) [SVN r11066] --- include/boost/integer_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/integer_traits.hpp b/include/boost/integer_traits.hpp index e480290..d216bb1 100644 --- a/include/boost/integer_traits.hpp +++ b/include/boost/integer_traits.hpp @@ -137,7 +137,7 @@ class integer_traits public detail::integer_traits_base { }; -#ifdef ULLONG_MAX +#if defined(ULLONG_MAX) && !defined(__SUNPRO_CC) template<> class integer_traits : public std::numeric_limits,