mirror of
https://github.com/boostorg/concept_check.git
synced 2025-07-29 12:07:42 +02:00
Updated preprocessor logic to use BOOST_HAS_LONG_LONG
[SVN r11399]
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user