Updated preprocessor logic to use BOOST_HAS_LONG_LONG

[SVN r11399]
This commit is contained in:
John Maddock
2001-10-18 11:33:52 +00:00
parent 32cabb604e
commit c72370f85f

View File

@ -134,7 +134,7 @@ struct require_same { typedef T type; };
template <> struct SignedIntegerConcept<short> { void constraints() {} };
template <> struct SignedIntegerConcept<int> { void constraints() {} };
template <> struct SignedIntegerConcept<long> { void constraints() {} };
# if (defined(ULLONG_MAX) || defined(ULONG_LONG_MAX))
# if defined(BOOST_HAS_LONG_LONG)
template <> struct SignedIntegerConcept<long long> { void constraints() {} };
# endif
// etc.