Fix loghandler memleak (#609)

This commit is contained in:
Ildar Kashaev 2023-03-30 15:03:02 +03:00 committed by GitHub
parent 112139665b
commit eef1abe415
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,8 @@ namespace crow
class ILogHandler
{
public:
virtual ~ILogHandler() = default;
virtual void log(std::string message, LogLevel level) = 0;
};