Skip to content
Snippets Groups Projects
Commit fd0751a6 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix warning about non-virtual destructor

parent a1a0ece7
No related branches found
No related tags found
No related merge requests found
...@@ -74,6 +74,7 @@ template <class T, typename T_PTR> ...@@ -74,6 +74,7 @@ template <class T, typename T_PTR>
class LLOctreeTraveler class LLOctreeTraveler
{ {
public: public:
virtual ~LLOctreeTraveler() = default;
virtual void traverse(const LLOctreeNode<T, T_PTR>* node); virtual void traverse(const LLOctreeNode<T, T_PTR>* node);
virtual void visit(const LLOctreeNode<T, T_PTR>* branch) = 0; virtual void visit(const LLOctreeNode<T, T_PTR>* branch) = 0;
}; };
......
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