38c9e4
diff -up boost_1_57_0/boost/mpl/print.hpp\~ boost_1_57_0/boost/mpl/print.hpp
38c9e4
--- boost_1_57_0/boost/mpl/print.hpp~	2014-07-09 23:12:31.000000000 +0200
38c9e4
+++ boost_1_57_0/boost/mpl/print.hpp	2015-01-20 12:44:59.621400948 +0100
38c9e4
@@ -52,16 +52,15 @@ struct print
38c9e4
     enum { n = sizeof(T) + -1 };
38c9e4
 #elif defined(__MWERKS__)
38c9e4
     void f(int);
38c9e4
-#else 
38c9e4
-    enum {
38c9e4
-        n =
38c9e4
-# if defined(__EDG_VERSION__)
38c9e4
-           aux::dependent_unsigned<T>::value > -1
38c9e4
-# else 
38c9e4
-           sizeof(T) > -1
38c9e4
-# endif 
38c9e4
-        };
38c9e4
-#endif 
38c9e4
+#elif defined(__EDG_VERSION__)
38c9e4
+    enum { n = aux::dependent_unsigned<T>::value > -1 };
38c9e4
+#elif defined(BOOST_GCC)
38c9e4
+    enum { n1 };
38c9e4
+    enum { n2 };
38c9e4
+    enum { n = n1 != n2 };
38c9e4
+#else
38c9e4
+    enum { n = sizeof(T) > -1 };
38c9e4
+#endif
38c9e4
 };
38c9e4
 
38c9e4
 #if defined(BOOST_MSVC)
38c9e4
38c9e4
Diff finished.  Tue Jan 20 12:45:03 2015