Replaced SPDLOG_FINAL macro with final

This commit is contained in:
gabime
2018-09-26 14:33:37 +03:00
parent be7e7237e9
commit 65defd3806
9 changed files with 39 additions and 55 deletions

View File

@@ -32,13 +32,6 @@
#define SPDLOG_CONSTEXPR constexpr
#endif
// final keyword support. On by default. See tweakme.h
#if defined(SPDLOG_NO_FINAL)
#define SPDLOG_FINAL
#else
#define SPDLOG_FINAL final
#endif
#if defined(__GNUC__) || defined(__clang__)
#define SPDLOG_DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER)