This commit was manufactured by cvs2svn to create branch

'boost-graph-library'.

[SVN r7698]
This commit is contained in:
nobody
2000-09-09 10:20:25 +00:00
parent 87490c040d
commit 0101ecf6ef
5 changed files with 380 additions and 2 deletions

View File

@ -9,6 +9,7 @@
// See http://www.boost.org for most recent version including documentation.
// Revision History
// 30 Jul 00 Add typename syntax fix (Jens Maurer)
// 28 Aug 99 Initial version
#ifndef BOOST_INTEGER_HPP
@ -45,7 +46,7 @@ namespace boost
template< int Bits > // bits (including sign) required
struct int_t
{
typedef int_least_helper
typedef typename int_least_helper
<
(Bits-1 <= std::numeric_limits<long>::digits) +
(Bits-1 <= std::numeric_limits<int>::digits) +
@ -59,7 +60,7 @@ namespace boost
template< int Bits > // bits required
struct uint_t
{
typedef int_least_helper
typedef typename int_least_helper
<
5 +
(Bits <= std::numeric_limits<unsigned long>::digits) +
@ -77,3 +78,4 @@ namespace boost
} // namespace boost
#endif // BOOST_INTEGER_HPP