From 9c9d92ae3a7c70adff71e04bae14a1e1394693f5 Mon Sep 17 00:00:00 2001 From: clang-format Date: Thu, 4 Aug 2016 19:28:34 -0700 Subject: test: apply clang-tidy google-readability-braces-around-statements applied against a x86_64 configure with and without --enable-vp9-highbitdepth clang-tidy-3.7.1 \ -checks='-*,google-readability-braces-around-statements' \ -header-filter='.*' -fix + clang-format afterward Change-Id: Ia2993ec64cf1eb3505d3bfb39068d9e44cfbce8d --- test/fdct4x4_test.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/fdct4x4_test.cc') diff --git a/test/fdct4x4_test.cc b/test/fdct4x4_test.cc index 327793623..1270dae94 100644 --- a/test/fdct4x4_test.cc +++ b/test/fdct4x4_test.cc @@ -170,8 +170,9 @@ class Trans4x4TestBase { for (int i = 0; i < count_test_block; ++i) { // Initialize a test block with input range [-mask_, mask_]. - for (int j = 0; j < kNumCoeffs; ++j) + for (int j = 0; j < kNumCoeffs; ++j) { input_block[j] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_); + } fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_); ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_)); -- cgit v1.2.3