Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/BoostRotatingFileLog.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
class BoostRotatingFileLog : public LogSinkInterface
{
public:
virtual bool initialize();
virtual void logMessage(const std::string& msg);
virtual bool initialize() override;
virtual void logMessage(const std::string& msg) override;

private:
void addFileSink();
Expand Down
4 changes: 2 additions & 2 deletions include/WindowsDebuggerSink.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ class WindowsDebuggerSink: public LogSinkInterface
{
public:

virtual bool initialize();
virtual void logMessage(const std::string& msg);
virtual bool initialize() override;
virtual void logMessage(const std::string& msg) override;
};
#endif // _WIN32

Expand Down
Loading