Small coding style fix

This commit is contained in:
Alexander Bock
2026-02-08 20:46:12 +01:00
parent 1fb00cff5f
commit 19b76c39f6

View File

@@ -262,8 +262,7 @@ void RenderableConstellationLines::initializeGL() {
void RenderableConstellationLines::deinitializeGL() {
using ConstellationKeyValuePair = std::pair<const int, ConstellationLine>;
for (const ConstellationKeyValuePair& pair : _renderingConstellationsMap)
{
for (const ConstellationKeyValuePair& pair : _renderingConstellationsMap) {
glDeleteVertexArrays(1, &pair.second.vaoArray);
glDeleteBuffers(1, &pair.second.vboArray);
}