From 7135d01fc50601559e4d7fc0694badb63e4484e6 Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Wed, 4 Dec 2019 17:01:58 +0300 Subject: [PATCH] Alternative fix for 5824 ticket Just put `statement/sequence.hpp` into `operator.hpp`, because `operator,` is logically expected in operators include, while `scope/local_variable.hpp` does not make any sense (includes `statement/sequence.hpp` by the luck). --- include/boost/phoenix/core.hpp | 1 - include/boost/phoenix/operator.hpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/phoenix/core.hpp b/include/boost/phoenix/core.hpp index 039b822d..b2bbc464 100644 --- a/include/boost/phoenix/core.hpp +++ b/include/boost/phoenix/core.hpp @@ -17,7 +17,6 @@ #include #include #include -#include // to fix 5824 #include // attempt to fix problems in intel 14.0.1 #endif diff --git a/include/boost/phoenix/operator.hpp b/include/boost/phoenix/operator.hpp index bd706026..d59efb86 100644 --- a/include/boost/phoenix/operator.hpp +++ b/include/boost/phoenix/operator.hpp @@ -18,6 +18,6 @@ #include #include #include -#include // to fix 5824 +#include // to fix 5824 #endif