Bring docs into line with code.

[SVN r57885]
This commit is contained in:
John Maddock
2009-11-24 10:14:43 +00:00
parent 09ee5872ba
commit cf359129a3
2 changed files with 4 additions and 3 deletions

View File

@ -58,14 +58,14 @@ is particularly useful for solving generic programming problems.</p>
};
// signed
template&lt; long MaxValue &gt;
template&lt; long long MaxValue &gt;
struct int_max_value_t
{
typedef <em>implementation_supplied</em> least;
typedef int_fast_t&lt;least&gt;::fast fast;
};
template&lt; long MinValue &gt;
template&lt; long long MinValue &gt;
struct int_min_value_t
{
typedef <em>implementation_supplied</em> least;
@ -73,7 +73,7 @@ is particularly useful for solving generic programming problems.</p>
};
// unsigned
template&lt; unsigned long Value &gt;
template&lt; unsigned long long Value &gt;
struct uint_value_t
{
typedef <em>implementation_supplied</em> least;