6#ifndef METALL_VERSION_HPP
7#define METALL_VERSION_HPP
17#define METALL_VERSION 3000
22static_assert(std::numeric_limits<version_type>::max() >=
METALL_VERSION,
23 "version_type cannot handle the current version");
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