Ticket #3708: boost_path.diff

File boost_path.diff, 568 bytes (added by Troy.Runkel@…, 13 years ago)

Unified diff for code patch

Line 
1==== //3rdparty/tmw/boost/boost/type_traits/intrinsics.hpp#5 (text) - //3rdparty/tmw/boost/boost/type_traits/intrinsics.hpp#6 (text) ==== content
2@@ -149,7 +149,7 @@
3 # define BOOST_IS_CLASS(T) __is_class(T)
4 # define BOOST_IS_ENUM(T) __is_enum(T)
5 # define BOOST_IS_POLYMORPHIC(T) __is_polymorphic(T)
6-# if !defined(unix) || defined(__LP64__)
7+# if !defined(__unix__) || defined(__LP64__)
8 // GCC sometimes lies about alignment requirements
9 // of type double on 32-bit unix platforms, use the
10 // old implementation instead in that case: