remove BOOST_FORCEINLINE fallback

This commit is contained in:
Dmitry Arkhipov 2024-02-13 10:08:53 +03:00
parent 3fed67e52a
commit 5271b92ba9

View File

@ -48,16 +48,6 @@
# endif
#endif
#ifndef BOOST_FORCEINLINE
# ifdef _MSC_VER
# define BOOST_FORCEINLINE __forceinline
# elif defined(__GNUC__) || defined(__clang__)
# define BOOST_FORCEINLINE inline __attribute__((always_inline))
# else
# define BOOST_FORCEINLINE inline
# endif
#endif
#ifndef BOOST_NOINLINE
# ifdef _MSC_VER
# define BOOST_NOINLINE __declspec(noinline)