diff --git a/index.html b/index.html index f94148a..6aa0bb8 100644 --- a/index.html +++ b/index.html @@ -131,6 +131,7 @@ instead.

3180, 3568, 3657, + 2134,


diff --git a/integer.htm b/integer.htm index 3d3f9c5..68767b4 100644 --- a/integer.htm +++ b/integer.htm @@ -58,14 +58,14 @@ is particularly useful for solving generic programming problems.

}; // signed - template< long MaxValue > + template< long long MaxValue > struct int_max_value_t { typedef implementation_supplied least; typedef int_fast_t<least>::fast fast; }; - template< long MinValue > + template< long long MinValue > struct int_min_value_t { typedef implementation_supplied least; @@ -73,7 +73,7 @@ is particularly useful for solving generic programming problems.

}; // unsigned - template< unsigned long Value > + template< unsigned long long Value > struct uint_value_t { typedef implementation_supplied least;