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/// 2.1 -> 20100
11/// 2.16 -> 21600
12/// 2.16-rc -> 21599
13/// 3.0 -> 30000
14/// 3.0-rc -> 29999
15/// @endcode
16// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
17#define USERVER_VERSION_FULL 29999