Added exact-integer templates, which fixes #1225 (and completes #653)

[SVN r47434]
This commit is contained in:
Daryle Walker
2008-07-15 09:59:19 +00:00
parent 053be71261
commit 55e1796c7a
4 changed files with 526 additions and 59 deletions

View File

@ -87,12 +87,21 @@ template < >
template < typename LeastInt >
struct int_fast_t;
template < int Bits, typename Signedness >
struct exact_integral;
template< int Bits >
struct int_t;
template< int Bits >
struct int_exact_t;
template< int Bits >
struct uint_t;
template< int Bits >
struct uint_exact_t;
template< intmax_t MaxValue >
struct int_max_value_t;