blob: f508aa0a69513e82781da905d271451b0a101453 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "core/pch.hh"
#include "core/version.hh"
// clang-format off
const unsigned short version::major = 16;
const unsigned short version::minor = 0;
const unsigned short version::patch = 1;
// clang-format on
const std::string_view version::commit = "d304b608";
const std::string_view version::branch = "master";
const std::string_view version::triplet = "16.0.1";
const std::string_view version::full = "16.0.1-d304b608";
|