Replace _IRR_OVERRIDE_ macro with override keyword
The commit also establishes a precedent of leaving off the `virtual` keyword in overrides. Although not strictly necessary, I believe this is good for readability because it makes it clear it is an override and not a pure virtual function, and it helps keep line lengths shorter. We should move towards eliminating the macro altogether, but the definition has been left in with a note on deprecation so that in-progress work will not suffer merge conflicts.
This commit is contained in:
@@ -18,10 +18,10 @@ public:
|
||||
virtual ~CProfiler();
|
||||
|
||||
//! Write all profile-data into a string
|
||||
virtual void printAll(core::stringw &result, bool includeOverview,bool suppressUncalled) const _IRR_OVERRIDE_;
|
||||
void printAll(core::stringw &result, bool includeOverview,bool suppressUncalled) const override;
|
||||
|
||||
//! Write the profile data of one group into a string
|
||||
virtual void printGroup(core::stringw &result, u32 groupIndex, bool suppressUncalled) const _IRR_OVERRIDE_;
|
||||
void printGroup(core::stringw &result, u32 groupIndex, bool suppressUncalled) const override;
|
||||
|
||||
protected:
|
||||
core::stringw makeTitleString() const;
|
||||
|
Reference in New Issue
Block a user