File indexing completed on 2025-09-15 08:39:13
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_LOCKFREE_DETAIL_USES_OPTIONAL_HPP
0008 #define BOOST_LOCKFREE_DETAIL_USES_OPTIONAL_HPP
0009
0010 #include <boost/config.hpp>
0011
0012 #ifndef BOOST_NO_CXX17_HDR_OPTIONAL
0013
0014 # include <optional>
0015
0016 namespace boost { namespace lockfree {
0017
0018 struct uses_optional_t
0019 {};
0020
0021 # ifdef BOOST_NO_CXX17_INLINE_VARIABLES
0022 static
0023 # else
0024 inline
0025 # endif
0026 constexpr uses_optional_t uses_optional;
0027
0028 }}
0029
0030 #endif
0031
0032 #endif