mirror of
https://github.com/boostorg/integer.git
synced 2025-07-23 01:07:15 +02:00
Bring docs into line with code.
[SVN r57885]
This commit is contained in:
@ -58,14 +58,14 @@ is particularly useful for solving generic programming problems.</p>
|
||||
};
|
||||
|
||||
// signed
|
||||
template< long MaxValue >
|
||||
template< long long MaxValue >
|
||||
struct int_max_value_t
|
||||
{
|
||||
typedef <em>implementation_supplied</em> least;
|
||||
typedef int_fast_t<least>::fast fast;
|
||||
};
|
||||
|
||||
template< long MinValue >
|
||||
template< long long MinValue >
|
||||
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< unsigned long Value >
|
||||
template< unsigned long long Value >
|
||||
struct uint_value_t
|
||||
{
|
||||
typedef <em>implementation_supplied</em> least;
|
||||
|
Reference in New Issue
Block a user