Codechange: Add missing override specifiers.

This commit is contained in:
Peter Nelson
2023-04-13 07:23:18 +01:00
committed by PeterN
parent a454773a73
commit 49dae08a3b
34 changed files with 123 additions and 123 deletions

View File

@@ -34,8 +34,8 @@ struct TownScopeResolver : public ScopeResolver {
{
}
virtual uint32_t GetVariable(byte variable, [[maybe_unused]] uint32_t parameter, bool *available) const;
virtual void StorePSA(uint reg, int32_t value);
uint32_t GetVariable(byte variable, [[maybe_unused]] uint32_t parameter, bool *available) const override;
void StorePSA(uint reg, int32_t value) override;
};
/** Resolver of town properties. */