We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f72690 commit 4c84305Copy full SHA for 4c84305
1 file changed
include/boost/container/detail/workaround.hpp
@@ -101,11 +101,8 @@
101
#elif defined(BOOST_MSVC) && (_MSC_VER <= 1900 || defined(_DEBUG))
102
//"__forceinline" and MSVC seems to have some bugs in old versions and in debug mode
103
#define BOOST_CONTAINER_FORCEINLINE inline
104
-#elif defined(BOOST_CLANG) || (defined(BOOST_GCC) && ((__GNUC__ <= 5) || defined(__MINGW32__)))
+#elif defined(BOOST_GCC) && (__GNUC__ <= 5)
105
//Older GCCs and MinGw have problems with forceinline
106
- //Clang can have code bloat issues with forceinline, see
107
- //https://lists.boost.org/boost-users/2023/04/91445.php and
108
- //https://github.com/llvm/llvm-project/issues/62202
109
110
#else
111
#define BOOST_CONTAINER_FORCEINLINE BOOST_FORCEINLINE
0 commit comments