added specialization of SignedIntegerConcept for long long

[SVN r8970]
This commit is contained in:
Jeremy Siek
2001-02-06 04:38:57 +00:00
parent 58423511ae
commit b967d0f1c5

View File

@@ -124,6 +124,9 @@ 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))
template <> struct SignedIntegerConcept<long long> { void constraints() {} };
# endif
// etc.
#endif