userver: userver/version.hpp Source File
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/version.hpp
4/// @brief Version macro
5
6/// @brief Version in form of `10000*major + 100*minor - (is_rc ? 1 : 0)`
7///
8/// Examples:
9/// @code
10/// 3.0-rc -> 29999
11/// 3.0 -> 30000
12/// 3.1-rc -> 30099
13/// 3.1 -> 30100
14/// 3.21 -> 32100
15/// 4.0-rc -> 39999
16/// 4.0 -> 40000
17/// @endcode
18// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
19#define USERVER_VERSION_FULL 30099