$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Guillaume Melquiond (gmelquio_at_[hidden])
Date: 2002-09-16 04:03:06
Hi,
Here is a little patch. I can't test it since this part of the code isn't
compiled on my computer, but I still think it should be corrected:
--- boost/limits~.hpp 2002-09-16 10:36:10.000000000 +0200
+++ boost/limits.hpp 2002-09-16 10:36:10.000000000 +0200
@@ -93,7 +93,7 @@
#elif defined(ULLONG_MAX) && defined(ULLONG_MIN)
static unsigned BOOST_LLT min(){ return ULLONG_MIN; }
static unsigned BOOST_LLT max(){ return ULLONG_MAX; }
-#elif defined(ULONGLONG_MAX) && defined(ULONG_LONG_MIN)
+#elif defined(ULONGLONG_MAX) && defined(ULONGLONG_MIN)
static unsigned BOOST_LLT min(){ return ULONGLONG_MIN; }
static unsigned BOOST_LLT max(){ return ULONGLONG_MAX; }
#else
Thanks,
Guillaume