blob: 50f128af3a5bd512bab7fee2dd737f625cafcd7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
namespace version
{
extern const unsigned long major;
extern const unsigned long minor;
extern const unsigned long patch;
} // namespace version
namespace version
{
extern const std::string_view commit;
extern const std::string_view semver;
} // namespace version
|