mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
Replaced details::make_unique with std::make_unique
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user