From 5c3600d277d14c7acfa1980377051fa17e731891 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Wed, 9 May 2018 12:39:06 +0900 Subject: [PATCH] Fixed the use of unintroduced namespace --- test/support/trivial.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/support/trivial.hpp b/test/support/trivial.hpp index 77c14905..7b74597a 100644 --- a/test/support/trivial.hpp +++ b/test/support/trivial.hpp @@ -19,7 +19,7 @@ #ifdef BOOST_FUSION_DETAIL_IS_TRIVIALLY_COPYABLE_CONFORMING # define BOOST_FUSION_ASSERT_FALLBACK BOOST_MPL_ASSERT #else -# define BOOST_FUSION_ASSERT_FALLBACK(cond) BOOST_MPL_ASSERT((mpl::true_)) +# define BOOST_FUSION_ASSERT_FALLBACK(cond) BOOST_MPL_ASSERT((boost::mpl::true_)) #endif