Minor cleanup to avoid including C standard header unless implementing a workaround

[SVN r32368]
This commit is contained in:
Alisdair Meredith
2006-01-21 22:53:57 +00:00
parent 3a1e8da8de
commit 6996886622

View File

@@ -30,11 +30,12 @@
// remember that since these just declare a bunch of macros, there should be // remember that since these just declare a bunch of macros, there should be
// no namespace issues from this. // no namespace issues from this.
// //
#include <limits.h> #if !defined(BOOST_HAS_LONG_LONG) \
# if !defined(BOOST_HAS_LONG_LONG) \ && !defined(BOOST_MSVC) && !defined(__BORLANDC__)
&& !defined(BOOST_MSVC) && !defined(__BORLANDC__) \ # include <limits.h>
&& (defined(ULLONG_MAX) || defined(ULONG_LONG_MAX) || defined(ULONGLONG_MAX)) # if (defined(ULLONG_MAX) || defined(ULONG_LONG_MAX) || defined(ULONGLONG_MAX))
# define BOOST_HAS_LONG_LONG # define BOOST_HAS_LONG_LONG
# endif
#endif #endif
// GCC 3.x will clean up all of those nasty macro definitions that // GCC 3.x will clean up all of those nasty macro definitions that