From cc618e1ba32acc8df4cb85e2e755fc8763f81905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 19 Apr 2023 07:18:52 +0200 Subject: [PATCH] Fixes #50 (Disabling forceinline with Clang broke the build) --- include/boost/move/detail/workaround.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/move/detail/workaround.hpp b/include/boost/move/detail/workaround.hpp index f583bc1..83c4ef7 100644 --- a/include/boost/move/detail/workaround.hpp +++ b/include/boost/move/detail/workaround.hpp @@ -66,6 +66,7 @@ //Clang can have code bloat issues with forceinline, see //https://lists.boost.org/boost-users/2023/04/91445.php and //https://github.com/llvm/llvm-project/issues/62202 + #define BOOST_MOVE_FORCEINLINE inline #else #define BOOST_MOVE_FORCEINLINE BOOST_FORCEINLINE #endif