From f2b76435956e6bed4024c78ec21b76a9ff1cd2d8 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 21 Jun 2013 12:27:49 +0000 Subject: [PATCH] Merge static_assert fix from Trunk. Fixes #8644. [SVN r84858] --- include/boost/static_assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/static_assert.hpp b/include/boost/static_assert.hpp index 01186b7..d083a9c 100644 --- a/include/boost/static_assert.hpp +++ b/include/boost/static_assert.hpp @@ -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 )