wip - no-exceptions support

This commit is contained in:
gabime
2019-08-18 19:46:28 +03:00
parent db1babab5e
commit b0a25f0183
55 changed files with 56523 additions and 18 deletions

View File

@@ -33,7 +33,7 @@ SPDLOG_INLINE void spdlog::async_logger::sink_it_(details::log_msg &msg)
}
else
{
throw spdlog_ex("async log: thread pool doesn't exist anymore");
SPDLOG_THROW spdlog_ex("async log: thread pool doesn't exist anymore");
}
}
@@ -46,7 +46,7 @@ SPDLOG_INLINE void spdlog::async_logger::flush_()
}
else
{
throw spdlog_ex("async flush: thread pool doesn't exist anymore");
SPDLOG_THROW spdlog_ex("async flush: thread pool doesn't exist anymore");
}
}