spdlog/include/spdlog/version.h

13 lines
305 B
C
Raw Normal View History

2018-07-24 17:03:27 -04:00
//
// Copyright(c) 2015 Gabi Melman.
// 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
2018-08-15 12:34:10 -04:00
#define SPDLOG_VER_PATCH 0
2018-07-24 17:03:27 -04:00
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)