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