Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabi Melman <gmelman1@gmail.com>2018-10-10 12:58:46 +0300
committerGitHub <noreply@github.com>2018-10-10 12:58:46 +0300
commit10e809cf644d55e5bd7d66d02e2604e2ddd7fb48 (patch)
tree6ebd2571cd4c7d099a2291fa6765c9c92d07f8d6
parentf4c5c5a36755685028c8148b456a4d7909e3d7dd (diff)
parent3079551d3021b4041b39498ca1198cd1565ef0df (diff)
Merge pull request #864 from DimRochette/v1.xv1.2.1
fix namespace of make_unique
-rw-r--r--include/spdlog/sinks/dist_sink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spdlog/sinks/dist_sink.h b/include/spdlog/sinks/dist_sink.h
index bacab872..0d8533eb 100644
--- a/include/spdlog/sinks/dist_sink.h
+++ b/include/spdlog/sinks/dist_sink.h
@@ -69,7 +69,7 @@ protected:
void set_pattern_(const std::string &pattern) override
{
- set_formatter_(spdlog::make_unique<spdlog::pattern_formatter>(pattern));
+ set_formatter_(details::make_unique<spdlog::pattern_formatter>(pattern));
}
void set_formatter_(std::unique_ptr<spdlog::formatter> sink_formatter) override