spdlog/include/spdlog/version.h

11 lines
329 B
C
Raw Normal View History

2019-05-11 13:06:17 -04:00
// Copyright(c) 2015-present Gabi Melman & spdlog contributors.
2018-07-24 17:03:27 -04:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#define SPDLOG_VER_MAJOR 1
2018-10-11 20:04:55 -04:00
#define SPDLOG_VER_MINOR 3
2019-01-18 05:13:07 -05:00
#define SPDLOG_VER_PATCH 1
2018-07-24 17:03:27 -04:00
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)