#define SPDLOG_NOEXCEPT throw() under visual studio

This commit is contained in:
gabime 2015-02-10 01:48:28 +02:00
parent 2fe68db0a3
commit 147ce4c80d
1 changed files with 1 additions and 1 deletions

View File

@ -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.