]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/filesystem/detail/utf8_codecvt_facet.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / filesystem / detail / utf8_codecvt_facet.hpp
1 // Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
2 // Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
3
4 // Distributed under the Boost Software License, Version 1.0.
5 // (See http://www.boost.org/LICENSE_1_0.txt)
6
7 #ifndef BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP
8 #define BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP
9
10 #include <boost/filesystem/config.hpp>
11
12 #define BOOST_UTF8_BEGIN_NAMESPACE \
13 namespace boost { \
14 namespace filesystem { \
15 namespace detail {
16
17 #define BOOST_UTF8_END_NAMESPACE \
18 } \
19 } \
20 }
21 #define BOOST_UTF8_DECL BOOST_FILESYSTEM_DECL
22
23 #include <boost/detail/utf8_codecvt_facet.hpp>
24
25 #undef BOOST_UTF8_BEGIN_NAMESPACE
26 #undef BOOST_UTF8_END_NAMESPACE
27 #undef BOOST_UTF8_DECL
28
29 #endif