mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
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:
parent
2a84a7f9c7
commit
939ca29fb0
4 changed files with 17 additions and 4 deletions
|
|
@ -12,7 +12,11 @@
|
|||
#pragma warning( push, 0 )
|
||||
#endif
|
||||
#include <boost/lambda/lambda.hpp>
|
||||
# ifdef BOOST_PHOENIX_USE_V2_OVER_V3
|
||||
#include <boost/spirit/home/phoenix.hpp>
|
||||
# else
|
||||
#include <boost/phoenix/phoenix.hpp>
|
||||
# endif
|
||||
#ifdef BOOST_MSVC
|
||||
#pragma warning( pop )
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue