comparison DEPENDENCIES/generic/include/boost/version.hpp @ 101:c530137014c0

Update Boost headers (1.58.0)
author Chris Cannam
date Mon, 07 Sep 2015 11:12:49 +0100
parents 2665513ce2d3
children
comparison
equal deleted inserted replaced
100:793467b5e61c 101:c530137014c0
8 8
9 #ifndef BOOST_VERSION_HPP 9 #ifndef BOOST_VERSION_HPP
10 #define BOOST_VERSION_HPP 10 #define BOOST_VERSION_HPP
11 11
12 // 12 //
13 // Caution, this is the only boost header that is guarenteed 13 // Caution: this is the only Boost header that is guaranteed
14 // to change with every boost release, including this header 14 // to change with every Boost release. Including this header
15 // will cause a recompile every time a new boost version is 15 // will cause a recompile every time a new Boost version is
16 // released. 16 // used.
17 // 17 //
18 // BOOST_VERSION % 100 is the patch level 18 // BOOST_VERSION % 100 is the patch level
19 // BOOST_VERSION / 100 % 1000 is the minor version 19 // BOOST_VERSION / 100 % 1000 is the minor version
20 // BOOST_VERSION / 100000 is the major version 20 // BOOST_VERSION / 100000 is the major version
21 21
22 #define BOOST_VERSION 105500 22 #define BOOST_VERSION 105800
23 23
24 // 24 //
25 // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION 25 // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
26 // but as a *string* in the form "x_y[_z]" where x is the major version 26 // but as a *string* in the form "x_y[_z]" where x is the major version
27 // number, y is the minor version number, and z is the patch level if not 0. 27 // number, y is the minor version number, and z is the patch level if not 0.
28 // This is used by <config/auto_link.hpp> to select which library version to link to. 28 // This is used by <config/auto_link.hpp> to select which library version to link to.
29 29
30 #define BOOST_LIB_VERSION "1_55" 30 #define BOOST_LIB_VERSION "1_58"
31 31
32 #endif 32 #endif