summaryrefslogtreecommitdiff
path: root/boost/convert/detail/char.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/convert/detail/char.hpp')
-rw-r--r--boost/convert/detail/char.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/boost/convert/detail/char.hpp b/boost/convert/detail/char.hpp
new file mode 100644
index 0000000000..5b3cbda10e
--- /dev/null
+++ b/boost/convert/detail/char.hpp
@@ -0,0 +1,23 @@
+// 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 <boost/mpl/bool.hpp>
+#include <boost/type_traits/remove_const.hpp>
+
+namespace boost { namespace cnv
+{
+ namespace detail
+ {
+ template<typename T> struct is_char : mpl::false_ {};
+ template<> struct is_char<char> : mpl:: true_ {};
+ template<> struct is_char<wchar_t> : mpl:: true_ {};
+ }
+ template <typename T> struct is_char : detail::is_char<typename remove_const<T>::type> {};
+}}
+
+#endif // BOOST_CONVERT_DETAIL_IS_CHAR_HPP
+