]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/container/detail/workaround.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / container / detail / workaround.hpp
index 83aacef604c79158cb51e2505bbdbbcc1fc55b18..b74e0fc31975ec23853b041d79f730532cb0ab25 100644 (file)
    #define BOOST_CONTAINER_FORCEINLINE BOOST_FORCEINLINE
 #endif
 
+//#define BOOST_CONTAINER_DISABLE_NOINLINE
+
+#if defined(BOOST_CONTAINER_DISABLE_NOINLINE)
+   #define BOOST_CONTAINER_NOINLINE
+#else
+   #define BOOST_CONTAINER_NOINLINE BOOST_NOINLINE
+#endif
+
+
 #if !defined(__has_feature)
 #define BOOST_CONTAINER_HAS_FEATURE(feature) 0
 #else