SHA256
modify something
This commit is contained in:
+2
-5
@@ -1,13 +1,10 @@
|
||||
#include <ranges>
|
||||
#include <featherlog/log_manager.hpp>
|
||||
#include <featherlog/push_result.hpp>
|
||||
|
||||
namespace flog
|
||||
{
|
||||
std::shared_ptr<LogManager> LogManager::create()
|
||||
{
|
||||
// ReSharper disable once CppDFAMemoryLeak
|
||||
return std::shared_ptr<LogManager>(new LogManager());
|
||||
std::shared_ptr<LogManager> LogManager::create(MessageFlagManager flagManager) {
|
||||
return std::shared_ptr<LogManager>(new LogManager(std::move(flagManager)));
|
||||
}
|
||||
|
||||
LogManager::~LogManager()
|
||||
|
||||
Reference in New Issue
Block a user