Disable BOOST_HAS_LONG_LONG when the library has no support for it.

[SVN r29613]
This commit is contained in:
Markus Schöpflin
2005-06-16 10:23:12 +00:00
parent d08665a846
commit 17d0352f55

View File

@@ -119,5 +119,9 @@
# define BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
#endif
//
// Disable BOOST_HAS_LONG_LONG when the library has no support for it.
//
#if !defined(_RWSTD_LONG_LONG) && defined(BOOST_HAS_LONG_LONG)
# undef BOOST_HAS_LONG_LONG
#endif