1 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2015. 2 // Distributed under the Boost Software License, Version 1.0. 3 // (See accompanying file LICENSE_1_0.txt or copy at 4 // http://www.boost.org/LICENSE_1_0.txt) 5 6 #include <boost/metaparse/version.hpp> 7 8 #include <boost/mpl/assert.hpp> 9 #include <boost/mpl/bool.hpp> 10 11 #include "test_case.hpp" 12 BOOST_METAPARSE_TEST_CASE(version)13BOOST_METAPARSE_TEST_CASE(version) 14 { 15 using boost::mpl::bool_; 16 17 // test_version_number 18 BOOST_MPL_ASSERT((bool_<BOOST_METAPARSE_VERSION == 10000000>)); 19 } 20 21