diff --git a/include/featherlog/log_formatter.hpp b/include/featherlog/log_formatter.hpp index b9ff58e..6e61e77 100644 --- a/include/featherlog/log_formatter.hpp +++ b/include/featherlog/log_formatter.hpp @@ -3,15 +3,13 @@ #include -#include - namespace flog { class FLOG_API LogFormatter { public: virtual ~LogFormatter() = default; - virtual std::string FLOG_CALL format() = 0; + virtual FLOG_CALL std::string format() = 0; }; }