mirror of
https://github.com/boostorg/integer.git
synced 2025-07-23 17:27:19 +02:00
Bring docs into line with code.
[SVN r57885]
This commit is contained in:
@ -131,6 +131,7 @@ instead.</p>
|
|||||||
<a href="https://svn.boost.org/trac/boost/ticket/3180">3180</a>,
|
<a href="https://svn.boost.org/trac/boost/ticket/3180">3180</a>,
|
||||||
<a href="https://svn.boost.org/trac/boost/ticket/3548">3568</a>,
|
<a href="https://svn.boost.org/trac/boost/ticket/3548">3568</a>,
|
||||||
<a href="https://svn.boost.org/trac/boost/ticket/3657">3657</a>,
|
<a href="https://svn.boost.org/trac/boost/ticket/3657">3657</a>,
|
||||||
|
<a href="https://svn.boost.org/trac/boost/ticket/2134">2134</a>,
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -58,14 +58,14 @@ is particularly useful for solving generic programming problems.</p>
|
|||||||
};
|
};
|
||||||
|
|
||||||
// signed
|
// signed
|
||||||
template< long MaxValue >
|
template< long long MaxValue >
|
||||||
struct int_max_value_t
|
struct int_max_value_t
|
||||||
{
|
{
|
||||||
typedef <em>implementation_supplied</em> least;
|
typedef <em>implementation_supplied</em> least;
|
||||||
typedef int_fast_t<least>::fast fast;
|
typedef int_fast_t<least>::fast fast;
|
||||||
};
|
};
|
||||||
|
|
||||||
template< long MinValue >
|
template< long long MinValue >
|
||||||
struct int_min_value_t
|
struct int_min_value_t
|
||||||
{
|
{
|
||||||
typedef <em>implementation_supplied</em> least;
|
typedef <em>implementation_supplied</em> least;
|
||||||
@ -73,7 +73,7 @@ is particularly useful for solving generic programming problems.</p>
|
|||||||
};
|
};
|
||||||
|
|
||||||
// unsigned
|
// unsigned
|
||||||
template< unsigned long Value >
|
template< unsigned long long Value >
|
||||||
struct uint_value_t
|
struct uint_value_t
|
||||||
{
|
{
|
||||||
typedef <em>implementation_supplied</em> least;
|
typedef <em>implementation_supplied</em> least;
|
||||||
|
Reference in New Issue
Block a user