From 0af2c732ab75eb2ca9afdb437d119cac1e20cb16 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 1 Mar 2017 16:52:43 +0000 Subject: [PATCH] Fix use of BOOST_STATIC_ASSERT for older preprocessors --- test/unordered/compile_tests.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unordered/compile_tests.hpp b/test/unordered/compile_tests.hpp index c84b04e9..fb908ffd 100644 --- a/test/unordered/compile_tests.hpp +++ b/test/unordered/compile_tests.hpp @@ -148,8 +148,8 @@ template void container_test(X& r, T const&) // node_type typedef BOOST_DEDUCED_TYPENAME X::node_type node_type; - BOOST_STATIC_ASSERT(boost::is_same::value); + BOOST_STATIC_ASSERT((boost::is_same::value)); node_type n1; node_type n2(rvalue_default());