Skip to content

Commit

Permalink
Fix issue #315
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Nov 14, 2016
1 parent 4e768c1 commit 9eee823
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/spdlog/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 9eee823

Please sign in to comment.