mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 03:07:41 +00:00
driver: Add missing override specifiers where applicable
Adds missing override specifiers to enforce correct virtual member function signatures.
This commit is contained in:
@@ -145,9 +145,9 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
hecl::SystemString toolName() const { return _SYS_STR("cook"); }
|
||||
hecl::SystemString toolName() const override { return _SYS_STR("cook"); }
|
||||
|
||||
int run() {
|
||||
int run() override {
|
||||
hecl::MultiProgressPrinter printer(true);
|
||||
hecl::ClientProcess cp(&printer);
|
||||
for (const hecl::ProjectPath& path : m_selectedItems)
|
||||
@@ -156,5 +156,5 @@ public:
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cancel() { m_useProj->interruptCook(); }
|
||||
void cancel() override { m_useProj->interruptCook(); }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user