Skip to content

Commit 5a89705

Browse files
committed
testprocessexecutor.cpp: fixed bugprone-implicit-widening-of-multiplication-result clang-tidy warning
1 parent 3a3e5d9 commit 5a89705

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/testprocessexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class TestProcessExecutor : public TestFixture {
252252
// for each file: top5 results + overall + empty line
253253
const std::string output_s = GET_REDIRECT_OUTPUT;
254254
// for each file: top5 results + overall + empty line
255-
TODO_ASSERT_EQUALS((5 + 1 + 1) * 2, 0, cppcheck::count_all_of(output_s, '\n'));
255+
TODO_ASSERT_EQUALS(static_cast<long long>(5 + 1 + 1) * 2, 0, cppcheck::count_all_of(output_s, '\n'));
256256
}
257257

258258
void showtime_top5_summary() {

0 commit comments

Comments
 (0)