Boost logo

Boost-Commit :

From: ramey_at_[hidden]
Date: 2008-03-31 12:49:54


Author: ramey
Date: 2008-03-31 12:49:53 EDT (Mon, 31 Mar 2008)
New Revision: 43958
URL: http://svn.boost.org/trac/boost/changeset/43958

Log:
correction of error which prevented compilation on gcc 43 - again
Text files modified:
   trunk/boost/archive/polymorphic_iarchive.hpp | 4 +++-
   trunk/boost/archive/polymorphic_oarchive.hpp | 4 +++-
   2 files changed, 6 insertions(+), 2 deletions(-)

Modified: trunk/boost/archive/polymorphic_iarchive.hpp
==============================================================================
--- trunk/boost/archive/polymorphic_iarchive.hpp (original)
+++ trunk/boost/archive/polymorphic_iarchive.hpp 2008-03-31 12:49:53 EDT (Mon, 31 Mar 2008)
@@ -40,11 +40,13 @@
 // if there is no 64 bit int or if its the same as a long
 // we shouldn't define separate functions for int64 data types.
 #if defined(BOOST_NO_INT64_T)
+ #define BOOST_NO_INTRINSIC_INT64_T
+#else
     #if defined(ULONG_MAX)
         #if(ULONG_MAX != 0xffffffff && ULONG_MAX == 18446744073709551615u) // 2**64 - 1
             #define BOOST_NO_INTRINSIC_INT64_T
         #endif
- #else
+ #else
         #define BOOST_NO_INTRINSIC_INT64_T
     #endif
 #endif

Modified: trunk/boost/archive/polymorphic_oarchive.hpp
==============================================================================
--- trunk/boost/archive/polymorphic_oarchive.hpp (original)
+++ trunk/boost/archive/polymorphic_oarchive.hpp 2008-03-31 12:49:53 EDT (Mon, 31 Mar 2008)
@@ -39,11 +39,13 @@
 // if there is no 64 bit int or if its the same as a long
 // we shouldn't define separate functions for int64 data types.
 #if defined(BOOST_NO_INT64_T)
+ #define BOOST_NO_INTRINSIC_INT64_T
+#else
     #if defined(ULONG_MAX)
         #if(ULONG_MAX != 0xffffffff && ULONG_MAX == 18446744073709551615u) // 2**64 - 1
             #define BOOST_NO_INTRINSIC_INT64_T
         #endif
- #else
+ #else
         #define BOOST_NO_INTRINSIC_INT64_T
     #endif
 #endif


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk