annotate DEPENDENCIES/generic/include/boost/archive/detail/utf8_codecvt_facet.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 // Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
Chris@16 2 // Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
Chris@16 3 // Distributed under the Boost Software License, Version 1.0. (See
Chris@16 4 // accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6
Chris@16 7 #ifndef BOOST_ARCHIVE_DETAIL_UTF8_CODECVT_FACET_HPP
Chris@16 8 #define BOOST_ARCHIVE_DETAIL_UTF8_CODECVT_FACET_HPP
Chris@16 9
Chris@101 10 #ifdef BOOST_NO_CXX11_HDR_CODECVT
Chris@101 11 #define BOOST_UTF8_BEGIN_NAMESPACE \
Chris@101 12 namespace boost { namespace archive { namespace detail {
Chris@101 13 #define BOOST_UTF8_DECL
Chris@101 14 #define BOOST_UTF8_END_NAMESPACE }}}
Chris@16 15
Chris@101 16 #include <boost/detail/utf8_codecvt_facet.hpp>
Chris@16 17
Chris@101 18 #undef BOOST_UTF8_END_NAMESPACE
Chris@101 19 #undef BOOST_UTF8_DECL
Chris@101 20 #undef BOOST_UTF8_BEGIN_NAMESPACE
Chris@101 21 #endif // BOOST_NO_CXX11_HDR_CODECVT
Chris@101 22 #endif // BOOST_ARCHIVE_DETAIL_UTF8_CODECVT_FACET_HPP
Chris@16 23