2
0
mirror of https://github.com/boostorg/integer.git synced 2026-01-20 04:32:36 +00:00

Compare commits

..

3 Commits

Author SHA1 Message Date
nobody
1e9c41ad64 This commit was manufactured by cvs2svn to create tag
'Version_1_24_0'.

[SVN r10904]
2001-08-20 14:01:13 +00:00
Beman Dawes
3bd242ef49 Fix broken hyperlink
[SVN r10896]
2001-08-19 15:08:33 +00:00
Beman Dawes
3db9390efb Add LL suffix to line 150 for long longs at suggestion of Toon Knapen
[SVN r10854]
2001-08-13 17:02:48 +00:00
4 changed files with 10 additions and 10 deletions

View File

@@ -69,7 +69,7 @@ representing any value of any signed integer type.</p>
capable of representing any value of any unsigned integer type.</p>
<p>These types are required.</p>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %b %Y" startspan -->10 Feb 2001<!--webbot bot="Timestamp" endspan i-checksum="14373" -->
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %b %Y" startspan -->17 Aug 2001<!--webbot bot="Timestamp" endspan i-checksum="14763" -->
</p>
<p>&nbsp;</p>

View File

@@ -24,7 +24,7 @@
#include <boost/config.hpp>
#ifdef BOOST_HAS_STDINT_H
#ifdef BOOST_SYSTEM_HAS_STDINT_H
// The following #include is an implementation artifact; not part of interface.
# ifdef __hpux
@@ -79,7 +79,7 @@ namespace boost
} // namespace boost
#else // BOOST_HAS_STDINT_H
#else // BOOST_SYSTEM_HAS_STDINT_H
# include <limits.h> // implementation artifact; not part of interface
@@ -147,7 +147,7 @@ namespace boost
# if !defined(BOOST_MSVC) && !defined(__BORLANDC__) && \
(!defined(__GLIBCPP__) || defined(_GLIBCPP_USE_LONG_LONG)) && \
(defined(ULLONG_MAX) || defined(ULONG_LONG_MAX) || defined(ULONGLONG_MAX))
# if (defined(ULLONG_MAX) && ULLONG_MAX == 18446744073709551615U) || (defined(ULONG_LONG_MAX) && ULONG_LONG_MAX == 18446744073709551615U) || (defined(ULONGLONG_MAX) && ULONGLONG_MAX == 18446744073709551615U)
# if (defined(ULLONG_MAX) && ULLONG_MAX == 18446744073709551615ULL) || (defined(ULONG_LONG_MAX) && ULONG_LONG_MAX == 18446744073709551615ULL) || (defined(ULONGLONG_MAX) && ULONGLONG_MAX == 18446744073709551615ULL)
// 2**64 - 1
typedef long long intmax_t;
typedef unsigned long long uintmax_t;
@@ -195,7 +195,7 @@ namespace boost
} // namespace boost
#endif // BOOST_HAS_STDINT_H
#endif // BOOST_SYSTEM_HAS_STDINT_H
#endif // BOOST_CSTDINT_HPP

View File

@@ -14,11 +14,11 @@
// NOTE OF OBSOLESCENCE: In general, this header file cannot detect
// whether the current translation unit somewhere includes ISO C99
// <stdint.h> or not. For example, in case BOOST_HAS_STDINT_H
// <stdint.h> or not. For example, in case BOOST_SYSTEM_HAS_STDINT_H
// is not defined and ISO C99 <stdint.h> has been included before,
// this file will re-define ISO C99 reserved file-scope identifiers
// such as int8_t (see ISO C99 7.1.3 and 7.18). Defining the macro
// BOOST_HAS_STDINT_H is not sufficient in general, in
// BOOST_SYSTEM_HAS_STDINT_H is not sufficient in general, in
// particular if a partly conformant <stdint.h> header is available
// on the platform, e.g. Comeau C++ with GNU glibc 2.1.2.
//
@@ -40,7 +40,7 @@
#include <boost/config.hpp>
#ifdef BOOST_HAS_STDINT_H
#ifdef BOOST_SYSTEM_HAS_STDINT_H
#include <stdint.h>
#else
@@ -150,7 +150,7 @@
typedef uint32_t uintmax_t;
# endif
#endif // BOOST_HAS_STDINT_H not defined
#endif // BOOST_SYSTEM_HAS_STDINT_H not defined
#endif // BOOST_STDINT_H
/****************************************************

View File

@@ -90,7 +90,7 @@ instead.
<hr>
<p>Revised: <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %b %Y" startspan -->10 Feb 2001<!--webbot bot="Timestamp" endspan i-checksum="14373" -->
<p>Revised: <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %b %Y" startspan -->17 Aug 2001<!--webbot bot="Timestamp" endspan i-checksum="14763" -->
</p>
</body>