errors 0.6.3
Loading...
Searching...
No Matches
version.hpp
1#pragma once
2
3#include <string_view>
4
5#if not defined(ERRORS_SINGLE_HEADER_FILE)
6#include "errors/config.hpp"
7#endif
8
9namespace errors
10{
11constexpr std::string_view version = ERRORS_VERSION;
12constexpr unsigned int version_major = ERRORS_VERSION_MAJOR;
13constexpr unsigned int version_minor = ERRORS_VERSION_MINOR;
14constexpr unsigned int version_patch = ERRORS_VERSION_PATCH;
15}