Skip to content

Commit 784b352

Browse files
committed
format
1 parent 374b6b8 commit 784b352

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/for_each.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ auto main() -> int { // NOLINT(bugprone-exception-escape)
6565
{
6666
auto_timer const _{"std::for_each"};
6767
std::for_each(cpu.begin(), cpu.end(), [](auto&& plane) { // NOLINT(modernize-use-ranges)
68-
for(auto&& row : plane) { // NOLINT(altera-unroll-loops)
69-
for(auto&& elem : row) { // NOLINT(altera-unroll-loops)
68+
for(auto&& row : plane) { // NOLINT(altera-unroll-loops)
69+
for(auto&& elem : row) { // NOLINT(altera-unroll-loops)
7070
elem += std::sqrt(std::pow(elem, 1.5) + std::sin(elem));
7171
}
7272
}

0 commit comments

Comments
 (0)