Back to home page

EIC code displayed by LXR

 
 

    


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 // (C) Copyright Vicente J. Botet Escriba 2014. Distributed under the Boost
0007 // Software License, Version 1.0. (See accompanying file
0008 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0009 //
0010 // See http://www.boost.org/libs/thread for documentation.
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