annotate DEPENDENCIES/generic/include/boost/program_options/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 2665513ce2d3
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). Permission to copy,
Chris@16 3 // use, modify, sell and distribute this software is granted provided this
Chris@16 4 // copyright notice appears in all copies. This software is provided "as is"
Chris@16 5 // without express or implied warranty, and with no claim as to its suitability
Chris@16 6 // for any purpose.
Chris@16 7
Chris@16 8 #ifndef BOOST_PROGRAM_OPTIONS_UTF8_CODECVT_FACET_HPP
Chris@16 9 #define BOOST_PROGRAM_OPTIONS_UTF8_CODECVT_FACET_HPP
Chris@16 10
Chris@16 11 #include <boost/program_options/config.hpp>
Chris@16 12
Chris@16 13 #define BOOST_UTF8_BEGIN_NAMESPACE \
Chris@16 14 namespace boost { namespace program_options { namespace detail {
Chris@16 15
Chris@16 16 #define BOOST_UTF8_END_NAMESPACE }}}
Chris@16 17 #define BOOST_UTF8_DECL BOOST_PROGRAM_OPTIONS_DECL
Chris@16 18
Chris@16 19 #include <boost/detail/utf8_codecvt_facet.hpp>
Chris@16 20
Chris@16 21 #undef BOOST_UTF8_BEGIN_NAMESPACE
Chris@16 22 #undef BOOST_UTF8_END_NAMESPACE
Chris@16 23 #undef BOOST_UTF8_DECL
Chris@16 24
Chris@16 25 #endif