// Copyright (c) 2009-2014 Vladimir Batov. // Use, modification and distribution are subject to the Boost Software License, // Version 1.0. See http://www.boost.org/LICENSE_1_0.txt. #ifndef BOOST_CONVERT_DETAIL_IS_CHAR_HPP #define BOOST_CONVERT_DETAIL_IS_CHAR_HPP #include #include namespace boost { namespace cnv { namespace detail { template struct is_char : mpl::false_ {}; template<> struct is_char : mpl:: true_ {}; template<> struct is_char : mpl:: true_ {}; } template struct is_char : detail::is_char::type> {}; }} #endif // BOOST_CONVERT_DETAIL_IS_CHAR_HPP