File indexing completed on 2025-01-18 09:39:15
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_LOCALE_DETAIL_FACET_ID_HPP_INCLUDED
0008 #define BOOST_LOCALE_DETAIL_FACET_ID_HPP_INCLUDED
0009
0010 #include <boost/locale/config.hpp>
0011 #include <locale>
0012
0013
0014 namespace boost { namespace locale { namespace detail {
0015 #if BOOST_CLANG_VERSION >= 40900
0016 # pragma clang diagnostic push
0017 # pragma clang diagnostic ignored "-Wundefined-var-template"
0018 #endif
0019
0020
0021
0022
0023
0024 template<class Derived>
0025 struct BOOST_LOCALE_DECL facet_id {
0026 static std::locale::id id;
0027 };
0028 #if BOOST_CLANG_VERSION >= 40900
0029 # pragma clang diagnostic pop
0030 #endif
0031 }}}
0032
0033
0034
0035 #endif