Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:41:55

0001 
0002 #ifndef BOOST_MPL_BITOR_HPP_INCLUDED
0003 #define BOOST_MPL_BITOR_HPP_INCLUDED
0004 
0005 // Copyright Aleksey Gurtovoy 2000-2009
0006 // Copyright Jaap Suter 2003
0007 //
0008 // Distributed under the Boost Software License, Version 1.0. 
0009 // (See accompanying file LICENSE_1_0.txt or copy at 
0010 // http://www.boost.org/LICENSE_1_0.txt)
0011 //
0012 // See http://www.boost.org/libs/mpl for documentation.
0013 
0014 // $Id$
0015 // $Date$
0016 // $Revision$
0017 
0018 // agurt, 23/jan/10: workaround a conflict with <iso646.h> header's 
0019 // macros, see http://tinyurl.com/ycwdxco; 'defined(bitor)'
0020 // has to be checked in a separate condition, otherwise GCC complains 
0021 // about 'bitor' being an alternative token
0022 #if defined(_MSC_VER)
0023 #ifndef __GCCXML__
0024 #if defined(bitor)
0025 #   pragma push_macro("bitor")
0026 #   undef bitor
0027 #   define bitor(x)
0028 #endif
0029 #endif
0030 #endif
0031 
0032 #define AUX778076_OP_NAME   bitor_
0033 #define AUX778076_OP_PREFIX bitor
0034 #define AUX778076_OP_TOKEN  |
0035 #include <boost/mpl/aux_/arithmetic_op.hpp>
0036 
0037 #if defined(_MSC_VER) && !defined(__clang__)
0038 #ifndef __GCCXML__
0039 #if defined(bitor)
0040 #   pragma pop_macro("bitor")
0041 #endif
0042 #endif
0043 #endif
0044 
0045 #endif // BOOST_MPL_BITOR_HPP_INCLUDED