123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef BOOST_CHARCONV_CONFIG_HPP_INCLUDED
- #define BOOST_CHARCONV_CONFIG_HPP_INCLUDED
- #include <boost/config.hpp>
- #include <climits>
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_CHARCONV_DYN_LINK)
- # if defined(BOOST_CHARCONV_SOURCE)
- # define BOOST_CHARCONV_DECL BOOST_SYMBOL_EXPORT
- # else
- # define BOOST_CHARCONV_DECL BOOST_SYMBOL_IMPORT
- # endif
- #else
- # define BOOST_CHARCONV_DECL
- #endif
- #if !defined(BOOST_CHARCONV_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_CHARCONV_NO_LIB)
- #define BOOST_LIB_NAME boost_charconv
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_CHARCONV_DYN_LINK)
- # define BOOST_DYN_LINK
- #endif
- #include <boost/config/auto_link.hpp>
- #endif
- #endif
|