diff --git a/reference.htm b/reference.htm index 48d858f..c8ba256 100644 --- a/reference.htm +++ b/reference.htm @@ -57,11 +57,14 @@
template <class T> - struct Integer_concept; // Is T a built-in integer type? + struct IntegerConcept; // Is T a built-in integer type? template <class T> struct SignedIntegerConcept; // Is T a built-in signed integer type? + template <class T> + struct UnsignedIntegerConcept; // Is T a built-in unsigned integer type? + template <class X, class Y> struct ConvertibleConcept; // Is X convertible to Y?