BOOST_METAPARSE_VERSION.qbk 512 B

123456789101112131415161718192021222324252627
  1. [#BOOST_METAPARSE_VERSION]
  2. [section BOOST_METAPARSE_VERSION]
  3. [h1 Synopsis]
  4. #define BOOST_METAPARSE_VERSION \\ unspecified
  5. This is a macro.
  6. [h1 Description]
  7. Macro containing the version number of Boost.Metaparse.
  8. [h1 Header]
  9. #include <boost/metaparse/version.hpp>
  10. [h1 Expression semantics]
  11. It has major, minor and release components:
  12. major == BOOST_METAPARSE_VERSION / 10000000
  13. minor == (BOOST_METAPARSE_VERSION % 10000000) / 100000
  14. release == BOOST_METAPARSE_VERSION % 100000
  15. [endsect]