Merge remote-tracking branch 'origin/main'

# Conflicts:
#	include/featherlog/log_formatter.hpp
This commit is contained in:
CupWater
2026-08-17 13:29:59 +08:00
+1 -3
View File
@@ -3,15 +3,13 @@
#include <string> #include <string>
#include <featherlog/flog_definitions.h>
namespace flog namespace flog
{ {
class FLOG_API LogFormatter class FLOG_API LogFormatter
{ {
public: public:
virtual ~LogFormatter() = default; virtual ~LogFormatter() = default;
virtual std::string FLOG_CALL format() = 0; virtual FLOG_CALL std::string format() = 0;
}; };
} }