version.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. // Boost version.hpp configuration header file ------------------------------//
  2. // (C) Copyright John maddock 1999. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for documentation
  6. #ifndef BOOST_VERSION_HPP
  7. #define BOOST_VERSION_HPP
  8. //
  9. // Caution: this is the only Boost header that is guaranteed
  10. // to change with every Boost release. Including this header
  11. // will cause a recompile every time a new Boost version is
  12. // used.
  13. //
  14. // BOOST_VERSION % 100 is the patch level
  15. // BOOST_VERSION / 100 % 1000 is the minor version
  16. // BOOST_VERSION / 100000 is the major version
  17. #define BOOST_VERSION 107200
  18. //
  19. // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
  20. // but as a *string* in the form "x_y[_z]" where x is the major version
  21. // number, y is the minor version number, and z is the patch level if not 0.
  22. // This is used by <config/auto_link.hpp> to select which library version to link to.
  23. #define BOOST_LIB_VERSION "1_72"
  24. #endif