From e98fad73b945931ae81cb4729a71eafbbe0d6dd3 Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Tue, 8 Oct 2024 11:40:30 -0700 Subject: [PATCH] Remove curly braces on single line statements --- src/ObjWriting/Game/T6/AssetDumpers/AssetDumperSndBank.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ObjWriting/Game/T6/AssetDumpers/AssetDumperSndBank.cpp b/src/ObjWriting/Game/T6/AssetDumpers/AssetDumperSndBank.cpp index d3a4e431..e3b213ee 100644 --- a/src/ObjWriting/Game/T6/AssetDumpers/AssetDumperSndBank.cpp +++ b/src/ObjWriting/Game/T6/AssetDumpers/AssetDumperSndBank.cpp @@ -391,9 +391,7 @@ namespace const auto dbSplRoundToValue = static_cast(Common::DbsplToLinear(dbSplRound) * static_cast(std::numeric_limits::max())); if (dbSplRoundToValue == value) - { break; - } } stream.WriteColumn(std::format("{}", dbSplRound)); @@ -411,9 +409,7 @@ namespace const auto centsRoundToValue = static_cast(Common::CentsToHertz(centsRound) * static_cast(std::numeric_limits::max())); if (centsRoundToValue == value) - { break; - } } stream.WriteColumn(std::format("{}", centsRound)); @@ -430,9 +426,7 @@ namespace const auto normValueRoundToValue = static_cast(normValueRound * static_cast(std::numeric_limits::max())); if (normValueRoundToValue == value) - { break; - } } stream.WriteColumn(std::format("{}", normValueRound));