Merge pull request #156 from TingleDinkle/cleanup/remove-redundant-virtual

style: clean up redundant virtual
This commit is contained in:
Michael Zhao
2026-02-15 23:43:05 -08:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ public:
void reset() override;
__attribute__((noinline)) virtual void combineMaybe(Struct20Base* other) override;
__attribute__((noinline)) void combineMaybe(Struct20Base* other) override;
// Unknown which fields belong in Struct20 vs Struct20Base
u32 mField_8 = 0;
+3 -3
View File
@@ -10,12 +10,12 @@ namespace ksys::world {
class ShootingStarMgr : public Job {
public:
ShootingStarMgr();
virtual ~ShootingStarMgr();
~ShootingStarMgr() override;
JobType getType() const override { return JobType::ShootingStar; }
virtual void init_(sead::Heap* heap) override;
virtual void calc_() override;
void init_(sead::Heap* heap) override;
void calc_() override;
virtual void reset();
static void setScheduled(bool enable);