]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/type_traits/is_unsigned.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / type_traits / is_unsigned.hpp
index c4c54af7b36610bf1d6c7341fcff3d3408bca74e..38b916296dfdc671f9e56d9cdfb946a4c9405980 100644 (file)
@@ -18,7 +18,7 @@
 
 namespace boost {
 
-#if !defined( __CODEGEARC__ )
+#if !defined( BOOST_CODEGEARC )
 
 #if !(defined(BOOST_MSVC) && BOOST_MSVC <= 1310) &&\
     !(defined(__EDG_VERSION__) && __EDG_VERSION__ <= 238) &&\
@@ -84,7 +84,7 @@ template <class T> struct is_unsigned : public false_type{};
 
 #endif
 
-#else // defined( __CODEGEARC__ )
+#else // defined( BOOST_CODEGEARC )
 template <class T> struct is_unsigned : public integral_constant<bool, __is_unsigned(T)> {};
 #endif