From fd0751a66ceaca6286ef5cf8ba3befda340ea937 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sat, 10 Dec 2022 18:56:31 -0500
Subject: [PATCH] Fix warning about non-virtual destructor

---
 indra/llmath/lloctree.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/indra/llmath/lloctree.h b/indra/llmath/lloctree.h
index ef83838b10c..15468e6b43d 100644
--- a/indra/llmath/lloctree.h
+++ b/indra/llmath/lloctree.h
@@ -74,6 +74,7 @@ template <class T, typename T_PTR>
 class LLOctreeTraveler
 {
 public:
+	virtual ~LLOctreeTraveler() = default;
     virtual void traverse(const LLOctreeNode<T, T_PTR>* node);
     virtual void visit(const LLOctreeNode<T, T_PTR>* branch) = 0;
 };
-- 
GitLab