Add BOOST_CONTAINER_DISABLE_NOINLINE

This commit is contained in:
Ion Gaztañaga
2020-08-09 23:27:12 +02:00
parent e0c7cb99b3
commit c08ead7f4b

View File

@@ -108,6 +108,15 @@
#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