Fixed phoenix V2 includes

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@750 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2014-05-29 12:22:36 +00:00
parent 2a84a7f9c7
commit 939ca29fb0
4 changed files with 17 additions and 4 deletions

View file

@ -15,15 +15,20 @@
#ifdef BOOST_MSVC
#pragma warning( push, 0 )
#endif
# ifdef BOOST_PHOENIX_USE_V2_OVER_V3
#include <boost/spirit/home/phoenix.hpp>
#include <boost/spirit/home/phoenix/bind.hpp>
# else
#include <boost/phoenix/phoenix.hpp>
#include <boost/phoenix/bind.hpp>
# endif
#ifdef BOOST_MSVC
#pragma warning( pop )
#endif
#ifndef BOOST_MSVC // this produces an ICE with all versions of MSVC
#include <boost/lambda/bind.hpp>
#include <boost/lambda/lambda.hpp>
#endif
#ifdef BOOST_MSVC
#pragma warning( pop )
#endif
#include <boost/bind.hpp>
#include <vector>
#include <deque>