Skip to content

Commit 5638302

Browse files
generatedunixname89002005287564facebook-github-bot
authored andcommitted
Fix CQS signal readability-braces-around-statements in xplat/ocean/impl/ocean
Reviewed By: dtolnay Differential Revision: D79329075 fbshipit-source-id: 069d7cc41b86bb889a4f88b07a9d077d05187051
1 parent f567d47 commit 5638302

19 files changed

Lines changed: 799 additions & 416 deletions

impl/ocean/test/testmath/TestMatrix.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,9 @@ bool TestMatrix::testSelfTransposedSquareMatrix(const double testDuration)
447447
{
448448
Matrix matrix(RandomI::random(1u, 32u), RandomI::random(1u, 32u));
449449

450-
for (unsigned int n = 0u; n < matrix.elements(); ++n)
450+
for (unsigned int n = 0u; n < matrix.elements(); ++n) {
451451
matrix(n) = Random::scalar(-valueRange, valueRange);
452+
}
452453

453454
performance.start();
454455
const Matrix squareMatrix = matrix.selfTransposedSquareMatrix();

0 commit comments

Comments
 (0)