From 6f8075833f6b3a6a351e7571f8df06d682fdd722 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 24 Jul 2016 23:15:44 +0300 Subject: WINTERMUTE: Another fix for c++11 compilation --- engines/wintermute/debugger/debugger_controller.cpp | 2 +- engines/wintermute/debugger/debugger_controller.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/wintermute/debugger/debugger_controller.cpp b/engines/wintermute/debugger/debugger_controller.cpp index 2e021530f8..aef96ed9c9 100644 --- a/engines/wintermute/debugger/debugger_controller.cpp +++ b/engines/wintermute/debugger/debugger_controller.cpp @@ -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); diff --git a/engines/wintermute/debugger/debugger_controller.h b/engines/wintermute/debugger/debugger_controller.h index 8c720281db..345b42f0cb 100644 --- a/engines/wintermute/debugger/debugger_controller.h +++ b/engines/wintermute/debugger/debugger_controller.h @@ -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; }; } -- cgit v1.2.3