From 147ce4c80dee3c693f19514ec331a9c07757eddd Mon Sep 17 00:00:00 2001 From: gabime Date: Tue, 10 Feb 2015 01:48:28 +0200 Subject: [PATCH] #define SPDLOG_NOEXCEPT throw() under visual studio --- include/spdlog/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 23c91947..8a6bfbf2 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -33,7 +33,7 @@ #ifndef _MSC_VER #define SPDLOG_NOEXCEPT noexcept #else -#define SPDLOG_NOEXCEPT +#define SPDLOG_NOEXCEPT throw() #endif // under linux, you can use the much faster CLOCK_REALTIME_COARSE clock.