Chris@16: Chris@16: #ifndef BOOST_MPL_BITOR_HPP_INCLUDED Chris@16: #define BOOST_MPL_BITOR_HPP_INCLUDED Chris@16: Chris@16: // Copyright Aleksey Gurtovoy 2000-2009 Chris@16: // Copyright Jaap Suter 2003 Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. Chris@16: // (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: // Chris@16: // See http://www.boost.org/libs/mpl for documentation. Chris@16: Chris@101: // $Id$ Chris@101: // $Date$ Chris@101: // $Revision$ Chris@16: Chris@16: // agurt, 23/jan/10: workaround a conflict with header's Chris@16: // macros, see http://tinyurl.com/ycwdxco; 'defined(bitor)' Chris@16: // has to be checked in a separate condition, otherwise GCC complains Chris@16: // about 'bitor' being an alternative token Chris@101: #if defined(_MSC_VER) && !defined(__clang__) Chris@16: #ifndef __GCCXML__ Chris@16: #if defined(bitor) Chris@16: # pragma push_macro("bitor") Chris@16: # undef bitor Chris@16: # define bitor(x) Chris@16: #endif Chris@16: #endif Chris@16: #endif Chris@16: Chris@16: #define AUX778076_OP_NAME bitor_ Chris@16: #define AUX778076_OP_PREFIX bitor Chris@16: #define AUX778076_OP_TOKEN | Chris@16: #include Chris@16: Chris@101: #if defined(_MSC_VER) && !defined(__clang__) Chris@16: #ifndef __GCCXML__ Chris@16: #if defined(bitor) Chris@16: # pragma pop_macro("bitor") Chris@16: #endif Chris@16: #endif Chris@16: #endif Chris@16: Chris@16: #endif // BOOST_MPL_BITOR_HPP_INCLUDED