6 #ifndef METALL_VERSION_HPP
7 #define METALL_VERSION_HPP
17 #define METALL_VERSION 2900
22 static_assert(std::numeric_limits<version_type>::max() >=
METALL_VERSION,
23 "version_type cannot handle the current version");
28 namespace ver_detail {
31 "The current version is equal to a error number");
43 return std::to_string(version / 100000) +
"." +
44 std::to_string(version / 100 % 1000) +
"." +
45 std::to_string(version % 100);
#define METALL_VERSION
Metall version. Metall follows the Semantic Versioning 2.0.0.
Definition: version.hpp:17