123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef BOOST_LOG_UTILITY_USE_STD_ALLOCATOR_HPP_INCLUDED_
- #define BOOST_LOG_UTILITY_USE_STD_ALLOCATOR_HPP_INCLUDED_
- #include <boost/log/detail/config.hpp>
- #include <boost/log/detail/header.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- BOOST_LOG_OPEN_NAMESPACE
- #ifndef BOOST_LOG_DOXYGEN_PASS
- namespace aux {
- namespace usestdalloc_adl_block {
- struct use_std_allocator {};
- }
- }
- using aux::usestdalloc_adl_block::use_std_allocator;
- #else
- struct use_std_allocator {};
- #endif
- BOOST_LOG_CLOSE_NAMESPACE
- }
- #include <boost/log/detail/footer.hpp>
- #endif
|