This commit is contained in:
gabime
2014-11-24 01:39:51 +02:00
parent 6cda714e4a
commit 7f0434528b
3 changed files with 6 additions and 4 deletions

View File

@@ -37,7 +37,8 @@
namespace spdlog
{
namespace sinks {
namespace sinks
{
class async_sink;
}
@@ -57,7 +58,7 @@ protected:
void _stop() override;
private:
log_clock::duration _shutdown_duration;
log_clock::duration _shutdown_duration;
std::unique_ptr<sinks::async_sink> _as;
};
}

View File

@@ -73,7 +73,8 @@ public:
std::unique_lock<std::mutex> ul(_mutex);
if (is_full())
{
if (!_item_popped_cond.wait_until(ul, clock::now() + timeout, [this]() {
if (!_item_popped_cond.wait_until(ul, clock::now() + timeout, [this]()
{
return !this->is_full();
}))
return false;