PEGASUS: Use override

Using clang-tidy modernize-use-override
This commit is contained in:
Orgad Shaneh 2021-11-14 09:03:48 +02:00 committed by Filippos Karapetis
parent c1343e8051
commit fc95bf1eca

View File

@ -184,7 +184,7 @@ class ArthurOxygen50Action : public AIPlayMessageAction {
public:
ArthurOxygen50Action();
virtual void performAIAction(AIRule *);
void performAIAction(AIRule *) override;
};
ArthurOxygen50Action::ArthurOxygen50Action() : AIPlayMessageAction("Images/AI/Mars/XMMAZB1", false, kWarningInterruption) {
@ -203,7 +203,7 @@ class ArthurOxygen25Action : public AIPlayMessageAction {
public:
ArthurOxygen25Action();
virtual void performAIAction(AIRule *);
void performAIAction(AIRule *) override;
};
ArthurOxygen25Action::ArthurOxygen25Action() : AIPlayMessageAction("Images/AI/Mars/XMMAZB2", false, kWarningInterruption) {
@ -226,7 +226,7 @@ class ArthurOxygen5Action : public AIPlayMessageAction {
public:
ArthurOxygen5Action();
virtual void performAIAction(AIRule *);
void performAIAction(AIRule *) override;
};
ArthurOxygen5Action::ArthurOxygen5Action() : AIPlayMessageAction("Images/AI/Mars/XMMAZB3", false, kWarningInterruption) {