Skip to content
Snippets Groups Projects
Commit b57fd180 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

warnings: fix missing `override` warnings

parent 0e620b96
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ public:
protected:
vtkHyperTreeGridGeometricLocator() = default;
virtual ~vtkHyperTreeGridGeometricLocator() = default;
~vtkHyperTreeGridGeometricLocator() override = default;
/**
* The recursive part of the point search
......
......@@ -121,7 +121,7 @@ public:
protected:
// Constructor/Destructor defaults
vtkHyperTreeGridLocator() = default;
virtual ~vtkHyperTreeGridLocator() = default;
~vtkHyperTreeGridLocator() override = default;
/**
* Internal reference to the HyperTreeGrid one wants to search over
......
......@@ -118,7 +118,7 @@ protected:
* Construction methods
*/
vtkHyperTreeGridPProbeFilter();
virtual ~vtkHyperTreeGridPProbeFilter();
~vtkHyperTreeGridPProbeFilter() override;
///@}
///@{
......
......@@ -158,7 +158,7 @@ class VTKGUISUPPORTQTQUICK_EXPORT QQuickVTKRenderItem
public:
QQuickVTKRenderItem(QQuickItem* parent = nullptr);
~QQuickVTKRenderItem() = default;
~QQuickVTKRenderItem() override = default;
///@{
/**
......
......@@ -156,7 +156,7 @@ public:
/**
* Destructor
*/
~QQuickVTKRenderWindow();
~QQuickVTKRenderWindow() override;
/**
* Set up the graphics surface format and api.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment