Update async_sink.h

pull/15/head
Gabi Melman 11 years ago
parent 94d2556db6
commit 54b868122d

@ -182,7 +182,11 @@ inline void spdlog::sinks::async_sink::shutdown(const log_clock::duration& timeo
inline void spdlog::sinks::async_sink::_push_sentry()
{
if (_last_backthread_ex)
throw *std::move(_last_backthread_ex);
{
auto ex = std::move(_last_backthread_ex);
_last_backthread_ex.reset();
throw *ex;
}
if (!_active)
throw(spdlog_ex("async_sink not active"));
}

Loading…
Cancel
Save