Make code respect BOOST_NO_INTEGRAL_INT64_T.

[SVN r58031]
This commit is contained in:
John Maddock
2009-11-29 16:02:45 +00:00
parent 1797528e35
commit 3af7c55ad9
4 changed files with 8 additions and 6 deletions

View File

@ -30,7 +30,7 @@ int main()
check<unsigned int>();
check<signed long>();
check<unsigned long>();
#ifdef BOOST_HAS_LONG_LONG
#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)
check<boost::long_long_type>();
check<boost::ulong_long_type>();
#endif