Blame boost/version.hpp

Packit 58578d
//  Boost version.hpp configuration header file  ------------------------------//
Packit 58578d
Packit 58578d
//  (C) Copyright John maddock 1999. Distributed under the Boost
Packit 58578d
//  Software License, Version 1.0. (See accompanying file
Packit 58578d
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Packit 58578d
Packit 58578d
//  See http://www.boost.org/libs/config for documentation
Packit 58578d
Packit 58578d
#ifndef BOOST_VERSION_HPP
Packit 58578d
#define BOOST_VERSION_HPP
Packit 58578d
Packit 58578d
//
Packit 58578d
//  Caution: this is the only Boost header that is guaranteed
Packit 58578d
//  to change with every Boost release. Including this header
Packit 58578d
//  will cause a recompile every time a new Boost version is
Packit 58578d
//  used.
Packit 58578d
//
Packit 58578d
//  BOOST_VERSION % 100 is the patch level
Packit 58578d
//  BOOST_VERSION / 100 % 1000 is the minor version
Packit 58578d
//  BOOST_VERSION / 100000 is the major version
Packit 58578d
Packit 58578d
#define BOOST_VERSION 106600
Packit 58578d
Packit 58578d
//
Packit 58578d
//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
Packit 58578d
//  but as a *string* in the form "x_y[_z]" where x is the major version
Packit 58578d
//  number, y is the minor version number, and z is the patch level if not 0.
Packit 58578d
//  This is used by <config/auto_link.hpp> to select which library version to link to.
Packit 58578d
Packit 58578d
#define BOOST_LIB_VERSION "1_66"
Packit 58578d
Packit 58578d
#endif