From 3079551d3021b4041b39498ca1198cd1565ef0df Mon Sep 17 00:00:00 2001 From: DimRochette Date: Wed, 10 Oct 2018 11:23:25 +0200 Subject: [PATCH] fix namespace of make_unique --- include/spdlog/sinks/dist_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(pattern)); + set_formatter_(details::make_unique(pattern)); } void set_formatter_(std::unique_ptr sink_formatter) override