File indexing completed on 2025-01-18 09:30:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_CONTAINER_DETAIL_MINIMAL_CHAR_TRAITS_HEADER_HPP
0013 #define BOOST_CONTAINER_DETAIL_MINIMAL_CHAR_TRAITS_HEADER_HPP
0014 #
0015 #ifndef BOOST_CONFIG_HPP
0016 # include <boost/config.hpp>
0017 #endif
0018 #
0019 #if defined(BOOST_HAS_PRAGMA_ONCE)
0020 # pragma once
0021 #endif
0022 #
0023 #
0024 #if defined(_MSC_VER) && defined(BOOST_DINKUMWARE_STDLIB)
0025 #include <iosfwd> //Dinkum libraries for MSVC define std::char_traits there
0026 #elif defined(BOOST_GNU_STDLIB)
0027 #include <bits/char_traits.h>
0028 #else
0029 #include <string> //Fallback
0030 #endif
0031
0032 #endif