mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-29 12:07:36 +02:00
Fix workaround condition: || v.s. &&.
see: 01a2d6557e (commitcomment-10697799)
This commit is contained in:
@ -79,7 +79,7 @@ namespace boost { namespace fusion { namespace detail
|
|||||||
// - MSVC 10.0 implements iterator intrinsics; MSVC 13.0 implements LWG2408.
|
// - MSVC 10.0 implements iterator intrinsics; MSVC 13.0 implements LWG2408.
|
||||||
#if (defined(BOOST_LIBSTDCXX_VERSION) && (BOOST_LIBSTDCXX_VERSION < 40500) && \
|
#if (defined(BOOST_LIBSTDCXX_VERSION) && (BOOST_LIBSTDCXX_VERSION < 40500) && \
|
||||||
defined(BOOST_LIBSTDCXX11)) || \
|
defined(BOOST_LIBSTDCXX11)) || \
|
||||||
(defined(BOOST_MSVC) && (1600 <= BOOST_MSVC || BOOST_MSVC < 1900))
|
(defined(BOOST_MSVC) && (1600 <= BOOST_MSVC && BOOST_MSVC < 1900))
|
||||||
# define BOOST_FUSION_WORKAROUND_FOR_LWG_2408
|
# define BOOST_FUSION_WORKAROUND_FOR_LWG_2408
|
||||||
namespace std
|
namespace std
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user