File indexing completed on 2026-09-21 08:42:16
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 ">#
0016 #ifndef BOOST_CONFIG_HPP
0017 # include <boost/config.hpp>
0018 #endif
0019 0020 ">#
0021 #if defined(BOOST_HAS_PRAGMA_ONCE)
0022 # pragma once
0023 #endif
0024 0025 ">#
0026 #
0027 #if defined(_MSC_VER) && defined(BOOST_DINKUMWARE_STDLIB)
0028 #include <iosfwd> //Dinkum libraries for MSVC define std::char_traits there
0029 #elif defined(BOOST_GNU_STDLIB)
0030 #include <bits/char_traits.h>
0031 #else
0032 #include <string> //Fallback
0033 #endif
0034
0035 #endif