fix vc compliation error about make_unique

This commit is contained in:
Gabi Melman 2018-09-01 21:56:19 +03:00 committed by GitHub
parent ebce97947d
commit a6ee1cf590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
#include <chrono>
#include <functional>
#include <memory>
#include <memory
#include <string>
#include <unordered_map>
@ -113,7 +113,7 @@ public:
{
std::lock_guard<std::mutex> lock(flusher_mutex_);
std::function<void()> clbk = std::bind(&registry::flush_all, this);
periodic_flusher_ = make_unique<periodic_worker>(clbk, interval);
periodic_flusher_ = spdlog::make_unique<periodic_worker>(clbk, interval);
}
void set_error_handler(log_err_handler handler)