We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 374b6b8 commit 784b352Copy full SHA for 784b352
1 file changed
test/for_each.cpp
@@ -65,8 +65,8 @@ auto main() -> int { // NOLINT(bugprone-exception-escape)
65
{
66
auto_timer const _{"std::for_each"};
67
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)
+ for(auto&& row : plane) { // NOLINT(altera-unroll-loops)
+ for(auto&& elem : row) { // NOLINT(altera-unroll-loops)
70
elem += std::sqrt(std::pow(elem, 1.5) + std::sin(elem));
71
}
72
0 commit comments