spdlog/include/spdlog/version.h

11 lines
330 B
C
Raw Normal View History

2019-06-04 05:09:16 +08:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2018-07-25 05:03:27 +08:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#define SPDLOG_VER_MAJOR 1
2021-07-21 04:01:34 +08:00
#define SPDLOG_VER_MINOR 9
2021-08-12 19:10:50 +08:00
#define SPDLOG_VER_PATCH 2
2018-07-25 05:03:27 +08:00
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)