fix doc example typo
[boost.git] / boost / version.hpp
blob49cfe766fbd79a13f455d0268545f75752828db7
1 // Boost version.hpp configuration header file ------------------------------//
3 // (C) Copyright John maddock 1999. Distributed under the Boost
4 // Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 // See http://www.boost.org/libs/config for documentation
9 #ifndef BOOST_VERSION_HPP
10 #define BOOST_VERSION_HPP
13 // Caution, this is the only boost header that is guarenteed
14 // to change with every boost release, including this header
15 // will cause a recompile every time a new boost version is
16 // released.
18 // BOOST_VERSION % 100 is the patch level
19 // BOOST_VERSION / 100 % 1000 is the minor version
20 // BOOST_VERSION / 100000 is the major version
22 #define BOOST_VERSION 104000
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
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.
30 #define BOOST_LIB_VERSION "1_40"
32 #endif