Fix for compilers that have no variadic macros but do have static_assert (are there any??)

Fixes #8346.

[SVN r83806]
This commit is contained in:
John Maddock
2013-04-08 08:45:06 +00:00
parent bf3ee21630
commit 8912d413ba

View File

@ -30,7 +30,7 @@
# ifndef BOOST_NO_CXX11_VARIADIC_MACROS
# define BOOST_STATIC_ASSERT_MSG( ... ) static_assert(__VA_ARGS__)
# else
# define BOOST_STATIC_ASSERT_MSG( ... ) static_assert(__VA_ARGS__)
# define BOOST_STATIC_ASSERT_MSG( B, Msg ) BOOST_STATIC_ASSERT( B )
# endif
#else
# define BOOST_STATIC_ASSERT_MSG( B, Msg ) BOOST_STATIC_ASSERT( B )