Merge static_assert fix from Trunk.

Fixes #8644.

[SVN r84858]
This commit is contained in:
John Maddock
2013-06-21 12:27:49 +00:00
parent bc29f7ab62
commit f2b7643595

View File

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