From 77308ac527929bb7a5411057dd32c7e1ec953907 Mon Sep 17 00:00:00 2001 From: Mark Callow Date: Wed, 25 Sep 2024 16:05:34 +0900 Subject: [PATCH] Remove unnecessary braces. --- tests/loadtests/appfwSDL/VulkanAppSDL/vulkantextoverlay.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/loadtests/appfwSDL/VulkanAppSDL/vulkantextoverlay.hpp b/tests/loadtests/appfwSDL/VulkanAppSDL/vulkantextoverlay.hpp index 23349a4686..0a0d236f00 100644 --- a/tests/loadtests/appfwSDL/VulkanAppSDL/vulkantextoverlay.hpp +++ b/tests/loadtests/appfwSDL/VulkanAppSDL/vulkantextoverlay.hpp @@ -705,7 +705,7 @@ class VulkanTextOverlay // Generate a uv mapped quad per char in the new text it = text.begin(); - while (it != text.end()) { + while (it != text.end()) { if (!advanceUTF8(it, text.end(), codepoint)) break; @@ -745,7 +745,6 @@ class VulkanTextOverlay if (numLetters == MAX_CHAR_COUNT) break; // Truncate the text. } - } } // Unmap buffer and update command buffers void endTextUpdate()