Commit 74c10df1 authored by gabime's avatar gabime

Changed SPDLOG_VERSION to be numeric

parent 0da977f9
......@@ -5,8 +5,6 @@
#pragma once
#define SPDLOG_VERSION "1.0.0-rc"
#include "spdlog/tweakme.h"
#include <atomic>
......
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
#define SPDLOG_VER_MAJOR 1
#define SPDLOG_VER_MINOR 0
#define SPDLOG_VER_PATCH 0
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment