From cdeba422badea7169af97df1068a3cf27818114b Mon Sep 17 00:00:00 2001 From: Jasem Mutlaq Date: Tue, 17 Sep 2024 20:56:14 +0300 Subject: [PATCH] Fix missing override --- .vscode/c_cpp_properties.json | 29 +++++++++++++++-------------- drivers/focuser/lakeside.h | 2 +- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 4c7af4c6a5..7b9dd80322 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -1,15 +1,16 @@ { - "configurations": [ - { - "name": "Linux", - "includePath": ["${workspaceFolder}/**"], - "defines": [], - "compilerPath": "/usr/bin/gcc", - "cStandard": "c17", - "cppStandard": "c++17", - "intelliSenseMode": "linux-gcc-x64", - "configurationProvider": "ms-vscode.cmake-tools" - } - ], - "version": 4 -} + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "linux-gcc-x64", + "configurationProvider": "ms-vscode.cmake-tools" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/drivers/focuser/lakeside.h b/drivers/focuser/lakeside.h index cb51eaa284..9b95c939f8 100644 --- a/drivers/focuser/lakeside.h +++ b/drivers/focuser/lakeside.h @@ -47,7 +47,7 @@ class Lakeside : public INDI::Focuser virtual bool AbortFocuser() override; virtual void TimerHit() override; virtual bool ReverseFocuser(bool enabled) override; - virtual bool SetFocuserBacklashEnabled(bool enabled); + virtual bool SetFocuserBacklashEnabled(bool enabled) override; virtual bool SetFocuserBacklash(int32_t steps) override; private: