Fixed g++ 4.9 warnings after the clang-tidy fixes

This commit is contained in:
gabime
2018-02-28 00:11:50 +02:00
parent 2e973c8b3d
commit 84d3c90b93
4 changed files with 23 additions and 23 deletions

View File

@@ -35,7 +35,7 @@ class async_logger SPDLOG_FINAL : public logger
{
public:
template<class It>
async_logger(const std::string& name,
async_logger(const std::string& logger_name,
const It& begin,
const It& end,
size_t queue_size,
@@ -44,7 +44,7 @@ public:
const std::chrono::milliseconds& flush_interval_ms = std::chrono::milliseconds::zero(),
const std::function<void()>& worker_teardown_cb = nullptr);
async_logger(const std::string& name,
async_logger(const std::string& logger_name,
sinks_init_list sinks,
size_t queue_size,
const async_overflow_policy overflow_policy = async_overflow_policy::block_retry,
@@ -52,7 +52,7 @@ public:
const std::chrono::milliseconds& flush_interval_ms = std::chrono::milliseconds::zero(),
const std::function<void()>& worker_teardown_cb = nullptr);
async_logger(const std::string& name,
async_logger(const std::string& logger_name,
sink_ptr single_sink,
size_t queue_size,
const async_overflow_policy overflow_policy = async_overflow_policy::block_retry,