Skip to content

Commit 36f50a4

Browse files
committed
style(math): Fix indentation of if statements in benchmark
1 parent 7433684 commit 36f50a4

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Core/GameEngine/Source/Common/Diagnostic/SimulationMathCrc.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ void SimulationMathCrc::runBenchmark(int iterations)
120120
xfer.open("SimMathDet");
121121
appendSimulationMathCrc_Deterministic(xfer);
122122
xfer.close();
123-
if (i == 0) crcDet = xfer.getCRC();
123+
if (i == 0)
124+
crcDet = xfer.getCRC();
124125
}
125126
#ifndef __APPLE__
126127
_fpreset();
@@ -139,7 +140,8 @@ void SimulationMathCrc::runBenchmark(int iterations)
139140
xfer.open("SimMathNat");
140141
appendSimulationMathCrc_Native(xfer);
141142
xfer.close();
142-
if (i == 0) crcNat = xfer.getCRC();
143+
if (i == 0)
144+
crcNat = xfer.getCRC();
143145
}
144146
#ifndef __APPLE__
145147
_fpreset();

0 commit comments

Comments
 (0)