mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3944 System : Improve code quality using clang-tidy
Remove redundant virtual and add override
This commit is contained in:
@@ -39,11 +39,11 @@ class RimUserDefinedPolylinesAnnotation : public RimPolylinesAnnotation
|
||||
CAF_PDM_HEADER_INIT;
|
||||
public:
|
||||
RimUserDefinedPolylinesAnnotation();
|
||||
~RimUserDefinedPolylinesAnnotation();
|
||||
~RimUserDefinedPolylinesAnnotation() override;
|
||||
|
||||
cvf::ref<RigPolyLinesData> polyLinesData() override;
|
||||
std::vector<RimPolylineTarget*> activeTargets() const;
|
||||
virtual bool isEmpty() override;
|
||||
bool isEmpty() override;
|
||||
|
||||
void appendTarget(const cvf::Vec3d& defaultPos = cvf::Vec3d::ZERO);
|
||||
void insertTarget(const RimPolylineTarget* targetToInsertBefore, RimPolylineTarget* targetToInsert);
|
||||
|
||||
Reference in New Issue
Block a user