From f8b327fffc107e85bf07f4ef5989ca146a43111f Mon Sep 17 00:00:00 2001 From: Andrea Date: Sun, 18 May 2025 23:14:46 +0200 Subject: [PATCH] Removed empty functions Removed empty functions --- src/Base/Interpreter.cpp | 8 -------- src/Base/Interpreter.h | 6 ------ 2 files changed, 14 deletions(-) diff --git a/src/Base/Interpreter.cpp b/src/Base/Interpreter.cpp index 6a27225b36..ac2677dae3 100644 --- a/src/Base/Interpreter.cpp +++ b/src/Base/Interpreter.cpp @@ -843,14 +843,6 @@ void InterpreterSingleton::dbgObserveFile(const char* sFileName) } } -void InterpreterSingleton::dbgSetBreakPoint(unsigned int /*uiLineNumber*/) -{} - -void InterpreterSingleton::dbgUnsetBreakPoint(unsigned int /*uiLineNumber*/) -{} - -void InterpreterSingleton::dbgStep() -{} std::string InterpreterSingleton::strToPython(const char* Str) { diff --git a/src/Base/Interpreter.h b/src/Base/Interpreter.h index 4ab7d0f993..6ca8874829 100644 --- a/src/Base/Interpreter.h +++ b/src/Base/Interpreter.h @@ -344,12 +344,6 @@ public: //@{ /// sets the file name which should be debugged void dbgObserveFile(const char* sFileName = ""); - /// sets a break point to a special line number in the current file - void dbgSetBreakPoint(unsigned int uiLineNumber); - /// unsets a break point to a special line number in the current file - void dbgUnsetBreakPoint(unsigned int uiLineNumber); - /// One step further - void dbgStep(); //@}