// Copyright Abel Sinkovics (abel@sinkovics.hu) 2012. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include "test_case.hpp" BOOST_METAPARSE_TEST_CASE(int_to_digit) { using boost::metaparse::util::int_to_digit; using boost::mpl::char_; using boost::mpl::int_; using boost::mpl::equal_to; // test0 BOOST_MPL_ASSERT((equal_to, int_to_digit >::type>)); // test5 BOOST_MPL_ASSERT((equal_to, int_to_digit >::type>)); // test9 BOOST_MPL_ASSERT((equal_to, int_to_digit >::type>)); }