Merge pull request #864 from DimRochette/v1.x

fix namespace of make_unique
This commit is contained in:
Gabi Melman 2018-10-10 12:58:46 +03:00 committed by GitHub
commit 10e809cf64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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