]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/type_traits/is_same.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / type_traits / is_same.hpp
index d16f4b2b1a3201646e59652d2fbaa6ec6bf0f6e8..9a9ec7e632945a2e5528d95c8547efee2219293a 100644 (file)
@@ -28,7 +28,7 @@ namespace boost {
 
    template <class T, class U> struct is_same : public false_type {};
    template <class T> struct is_same<T,T> : public true_type {};
-#if BOOST_WORKAROUND(__BORLANDC__, < 0x600)
+#if BOOST_WORKAROUND(BOOST_BORLANDC, < 0x600)
 // without this, Borland's compiler gives the wrong answer for
 // references to arrays:
    template <class T> struct is_same<T&, T&> : public true_type{};