Warning, file /include/boost/thread/experimental/config/inline_namespace.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef BOOST_THREAD_EXPERIMENTAL_CONFIG_INLINE_NAMESPACE_HPP
0002 #define BOOST_THREAD_EXPERIMENTAL_CONFIG_INLINE_NAMESPACE_HPP
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #include <boost/config.hpp>
0015
0016 #if !defined(BOOST_NO_CXX11_INLINE_NAMESPACES)
0017 # define BOOST_THREAD_INLINE_NAMESPACE(name) inline namespace name
0018 #else
0019 # define BOOST_THREAD_INLINE_NAMESPACE(name) namespace name
0020 #endif
0021
0022
0023 #endif