// // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh) // // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_LOCALE_CONFIG_HPP_INCLUDED #define BOOST_LOCALE_CONFIG_HPP_INCLUDED #include #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_LOCALE_DYN_LINK) # ifdef BOOST_LOCALE_SOURCE # define BOOST_LOCALE_DECL BOOST_SYMBOL_EXPORT # else # define BOOST_LOCALE_DECL BOOST_SYMBOL_IMPORT # endif // BOOST_LOCALE_SOURCE #else # define BOOST_LOCALE_DECL #endif // BOOST_LOCALE_DYN_LINK // // Automatically link to the correct build variant where possible. // #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_LOCALE_NO_LIB) && !defined(BOOST_LOCALE_SOURCE) // // Set the name of our library, this will get undef'ed by auto_link.hpp // once it's done with it: // #define BOOST_LIB_NAME boost_locale // // If we're importing code from a dll, then tell auto_link.hpp about it: // #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_LOCALE_DYN_LINK) # define BOOST_DYN_LINK #endif // // And include the header that does the work: // #include #endif // auto-linking disabled #if defined(BOOST_LOCALE_HIDE_AUTO_PTR) || defined(BOOST_NO_AUTO_PTR) #define BOOST_LOCALE_USE_AUTO_PTR 0 #else #define BOOST_LOCALE_USE_AUTO_PTR 1 #endif // Check for C++11 features that will be used in Boost 1.81 // If you are using Boost.Locale and REALLY require it to keep // supporting C++03/C++98 please comment with a detailed description // of your use case and reasoning why using C++11 is not possible in // https://github.com/boostorg/locale/issues/90 #if !defined(BOOST_LOCALE_DISABLE_DEPRECATED_03_WARNING) && ( \ defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) || \ defined(BOOST_NO_CXX11_DEFAULTED_MOVES) || \ defined(BOOST_NO_CXX11_HDR_FUNCTIONAL) || \ defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS) || \ defined(BOOST_NO_CXX11_NOEXCEPT) || \ defined(BOOST_NO_CXX11_OVERRIDE) || \ defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \ defined(BOOST_NO_CXX11_SMART_PTR) || \ defined(BOOST_NO_CXX11_STATIC_ASSERT) \ ) #include BOOST_PRAGMA_MESSAGE("CAUTION: Boost.Locale support for C++03 is deprecated. C++11 will be required from Boost 1.81 onwards.") BOOST_PRAGMA_MESSAGE("CAUTION: Define BOOST_LOCALE_DISABLE_DEPRECATED_03_WARNING to suppress this message.") #endif #ifdef _MSC_VER // Denote a constant condition, e.g. for if(sizeof(... #define BOOST_LOCALE_START_CONST_CONDITION __pragma(warning(push)) __pragma(warning(disable : 4127)) #define BOOST_LOCALE_END_CONST_CONDITION __pragma(warning(pop)) #else #define BOOST_LOCALE_START_CONST_CONDITION #define BOOST_LOCALE_END_CONST_CONDITION #endif #endif // boost/locale/config.hpp