2019-06-03 17:09:16 -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
|
2019-06-10 12:19:29 -04:00
|
|
|
#define SPDLOG_VER_MINOR 4
|
|
|
|
#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)
|