Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Logging/consolehandler.h')
-rw-r--r--Source/Logging/consolehandler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Logging/consolehandler.h b/Source/Logging/consolehandler.h
index dd283278..a2867efb 100644
--- a/Source/Logging/consolehandler.h
+++ b/Source/Logging/consolehandler.h
@@ -32,10 +32,10 @@ class ConsoleHandler : public LogHandler
public:
ConsoleHandler();
- virtual ~ConsoleHandler();
+ ~ConsoleHandler() override;
/*! \param message will be printed to std::cout */
- virtual void Log( LogSystem::LogType type, int row, const char* filename, const char* cat, const char* message_prefix, const char* message );
- virtual void Flush();
+ void Log( LogSystem::LogType type, int row, const char* filename, const char* cat, const char* message_prefix, const char* message ) override;
+ void Flush() override;
};