Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
74c10df1
Commit
74c10df1
authored
Jul 24, 2018
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed SPDLOG_VERSION to be numeric
parent
0da977f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
common.h
include/spdlog/common.h
+0
-2
version.h
include/spdlog/version.h
+12
-0
No files found.
include/spdlog/common.h
View file @
74c10df1
...
@@ -5,8 +5,6 @@
...
@@ -5,8 +5,6 @@
#pragma once
#pragma once
#define SPDLOG_VERSION "1.0.0-rc"
#include "spdlog/tweakme.h"
#include "spdlog/tweakme.h"
#include <atomic>
#include <atomic>
...
...
include/spdlog/version.h
0 → 100644
View file @
74c10df1
//
// 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)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment