From cf359129a3edf0836397ffd491eed6dff4a13ea4 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 24 Nov 2009 10:14:43 +0000 Subject: [PATCH] Bring docs into line with code. [SVN r57885] --- index.html | 1 + integer.htm | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) 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;