Changed long long to boost::long_long_type and unsigned long long to boost::ulong_long_type. A couple of other typo corrections, to get the code compiling with g++ -pedantic.

[SVN r44877]
This commit is contained in:
John Maddock
2008-04-29 10:05:11 +00:00
committed by Peter Dimov
parent 217fa37de2
commit e20431e713
2 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ MyUnsigned2 dummy4;
// Various types to test with each GCD/LCM
typedef ::boost::mpl::list<signed char, short, int, long,
#ifdef BOOST_HAS_LONG_LONG
long long,
boost::long_long_type,
#elif defined(BOOST_HAS_MS_INT64)
__int64,
#endif
@ -121,7 +121,7 @@ typedef ::boost::mpl::list<signed char, short, int, long,
typedef ::boost::mpl::list<unsigned char, unsigned short, unsigned,
unsigned long,
#ifdef BOOST_HAS_LONG_LONG
unsigned long long,
boost::ulong_long_type,
#elif defined(BOOST_HAS_MS_INT64)
unsigned __int64,
#endif