addition of INTXX_C support to integer library

[SVN r7792]
This commit is contained in:
John Maddock
2000-09-24 11:35:25 +00:00
parent 70edfde847
commit 76fcc1f65e
4 changed files with 316 additions and 41 deletions

View File

@ -70,7 +70,9 @@ int main()
runtest("long", long());
typedef unsigned long unsigned_long;
runtest("unsigned long", unsigned_long());
#ifndef BOOST_NO_INT64_T
#if !defined(BOOST_NO_INT64_T) && !defined(BOOST_MSVC) && !defined(__BORLANDC__)
//
// MS/Borland compilers can't support 64-bit member constants
runtest("int64_t (possibly long long)", boost::int64_t());
runtest("uint64_t (possibly unsigned long long)", boost::uint64_t());
#endif