From 19b76c39f62d3fe04f5f3df40b8bc287cee743f3 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Sun, 8 Feb 2026 20:46:12 +0100 Subject: [PATCH] Small coding style fix --- modules/space/rendering/renderableconstellationlines.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/space/rendering/renderableconstellationlines.cpp b/modules/space/rendering/renderableconstellationlines.cpp index 3d65f25e44..de769b7b61 100644 --- a/modules/space/rendering/renderableconstellationlines.cpp +++ b/modules/space/rendering/renderableconstellationlines.cpp @@ -262,8 +262,7 @@ void RenderableConstellationLines::initializeGL() { void RenderableConstellationLines::deinitializeGL() { using ConstellationKeyValuePair = std::pair; - for (const ConstellationKeyValuePair& pair : _renderingConstellationsMap) - { + for (const ConstellationKeyValuePair& pair : _renderingConstellationsMap) { glDeleteVertexArrays(1, &pair.second.vaoArray); glDeleteBuffers(1, &pair.second.vboArray); }