virtuals removed

virtuals removed and replaced with override where necessary, clang-tidy to the rescue.
This commit is contained in:
marauder2k7 2024-03-18 18:13:00 +00:00
parent 88a43f3137
commit efbe5e90f5
255 changed files with 2164 additions and 2164 deletions

View file

@ -61,7 +61,7 @@ class ScenePolyhedralZone : public ScenePolyhedralObject< SceneSimpleZone >
}
// SceneSimpleZone.
virtual void _updateOrientedWorldBox();
void _updateOrientedWorldBox() override;
public:
@ -69,13 +69,13 @@ class ScenePolyhedralZone : public ScenePolyhedralObject< SceneSimpleZone >
ScenePolyhedralZone( const PolyhedronType& polyhedron );
// SimObject.
virtual bool onAdd();
bool onAdd() override;
// SceneObject.
virtual void setTransform( const MatrixF& mat );
void setTransform( const MatrixF& mat ) override;
// SceneZoneSpace.
virtual bool getOverlappingZones( const Box3F& aabb, U32* outZones, U32& outNumZones );
bool getOverlappingZones( const Box3F& aabb, U32* outZones, U32& outNumZones ) override;
};
#endif // !_SCENEPOLYHEDRALZONE_H_