This commit is contained in:
Gabi Melman 2016-11-14 14:58:10 +02:00 committed by GitHub
parent 4e768c146b
commit 9eee823041
1 changed files with 3 additions and 3 deletions

View File

@ -30,11 +30,11 @@
#endif
#if defined(__GNUC__) || defined(__clang__)
#define DEPRECATED __attribute__((deprecated))
#define SPDLOG_DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER)
#define DEPRECATED __declspec(deprecated)
#define SPDLOG_DEPRECATED __declspec(deprecated)
#else
#define DEPRECATED
#define SPDLOG_DEPRECATED
#endif