mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
clang-tidy : Remove redundant 'virtual' and add 'override'
This commit is contained in:
@@ -113,11 +113,11 @@ public:
|
||||
void disableLighting(bool disable) { m_disableLighting = disable; }
|
||||
|
||||
protected:
|
||||
virtual bool isEqual( const EffectGenerator* other ) const;
|
||||
virtual EffectGenerator* copy() const;
|
||||
bool isEqual( const EffectGenerator* other ) const override;
|
||||
EffectGenerator* copy() const override;
|
||||
|
||||
virtual void updateForShaderBasedRendering(cvf::Effect* effect) const;
|
||||
virtual void updateForFixedFunctionRendering(cvf::Effect* effect) const;
|
||||
void updateForShaderBasedRendering(cvf::Effect* effect) const override;
|
||||
void updateForFixedFunctionRendering(cvf::Effect* effect) const override;
|
||||
|
||||
private:
|
||||
cvf::cref<cvf::ScalarMapper> m_edgeScalarMapper;
|
||||
|
||||
Reference in New Issue
Block a user