Skip to content
Snippets Groups Projects
Commit 1fd26b5f authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[GL] Constify var in QuadTree::~QuadTree fixes warning

parent 8c3aadd1
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ public: ...@@ -84,7 +84,7 @@ public:
*/ */
~QuadTree() ~QuadTree()
{ {
for (auto& child : _children) for (auto const& child : _children)
{ {
delete child; delete child;
} }
......
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