Skip to content

Commit

Permalink
Fix missing override
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Sep 17, 2024
1 parent 0cac130 commit cdeba42
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
29 changes: 15 additions & 14 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -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
}
2 changes: 1 addition & 1 deletion drivers/focuser/lakeside.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cdeba42

Please sign in to comment.