Replaced details::make_unique with std::make_unique

This commit is contained in:
gabime
2023-09-01 18:22:40 +03:00
parent 866744e40e
commit 19d4e60561
15 changed files with 64 additions and 80 deletions

View File

@@ -354,7 +354,7 @@ public:
std::unique_ptr<custom_flag_formatter> clone() const override
{
return spdlog::details::make_unique<custom_test_flag>(some_txt);
return std::make_unique<custom_test_flag>(some_txt);
}
};
// test clone with custom flag formatters