2
0
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:
Lioncash
2019-08-19 22:34:12 -04:00
parent 1fb18dbf26
commit c390f3d489
7 changed files with 18 additions and 18 deletions

View File

@@ -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(); }
};