WINTERMUTE: Another fix for c++11 compilation

This commit is contained in:
Eugene Sandulenko 2016-07-24 23:15:44 +03:00
parent 04c0b7360c
commit 6f8075833f
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ void DebuggerController::onBreakpoint(const Breakpoint *breakpoint, DebuggableSc
DEBUGGER->notifyBreakpoint(script->dbgGetFilename().c_str(), script->_currentLine);
}
void DebuggerController::notifyStep(DebuggableScript *script) override {
void DebuggerController::notifyStep(DebuggableScript *script) {
_lastScript = script;
_lastLine = script->_currentLine;
DEBUGGER->notifyStep(script->dbgGetFilename().c_str(), script->_currentLine);

View File

@ -112,7 +112,7 @@ public:
*/
void onBreakpoint(const Breakpoint *breakpoint, DebuggableScript *script);
void onWatch(const Watch *watch, DebuggableScript *script);
void notifyStep(DebuggableScript *script);
void notifyStep(DebuggableScript *script) override;
};
}