avoid "long long" with SunCC (Gennadiy E. Rozental)

[SVN r11066]
This commit is contained in:
Jens Maurer
2001-09-07 18:49:12 +00:00
parent 3bd242ef49
commit eee6dfa4d9

View File

@ -137,7 +137,7 @@ class integer_traits<unsigned long>
public detail::integer_traits_base<unsigned long, 0, ULONG_MAX>
{ };
#ifdef ULLONG_MAX
#if defined(ULLONG_MAX) && !defined(__SUNPRO_CC)
template<>
class integer_traits<long long>
: public std::numeric_limits<long long>,