Chris@16: /*============================================================================= Chris@16: Copyright (c) 2005-2008 Hartmut Kaiser Chris@16: Copyright (c) 2005-2010 Joel de Guzman Chris@101: Copyright (c) 2014-2015 John Fletcher Chris@16: Chris@101: Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: ==============================================================================*/ Chris@16: #ifndef BOOST_PHOENIX_VERSION_HPP Chris@16: #define BOOST_PHOENIX_VERSION_HPP Chris@16: Chris@16: /////////////////////////////////////////////////////////////////////////////// Chris@16: // Chris@16: // This is the version of the library Chris@16: // Chris@16: /////////////////////////////////////////////////////////////////////////////// Chris@101: #define BOOST_PHOENIX_VERSION 0x3200 // 3.2.0 Chris@101: Chris@101: // boost/predef is not in Boost before 1.55.0 Chris@101: #include Chris@101: #if BOOST_VERSION >= 105500 Chris@101: // Also note that it has a nonstandard header which could change, Chris@101: // so I have not relied on its own internal define. Chris@101: #include Chris@101: #define BOOST_PHOENIX_HAVE_BOOST_PREDEF Chris@101: #endif Chris@101: Chris@101: #ifdef BOOST_PHOENIX_HAVE_BOOST_PREDEF Chris@101: #define BOOST_PHOENIX_VERSION_NUMBER = BOOST_VERSION_NUMBER(3,2,0) Chris@101: #endif Chris@16: Chris@16: #endif