We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f9604 commit bee7202Copy full SHA for bee7202
inc/zoo/swar/associative_iteration.h
@@ -200,8 +200,8 @@ constexpr auto associativeOperatorIterated_regressive(
200
const CountHalver ch
201
) {
202
auto result = neutral;
203
- if (!log2Count) { return result; }
204
- for (;;) {
+ if(!log2Count) { return result; }
+ for(;;) {
205
result = op(result, base, count);
206
if(!--log2Count) { break; }
207
result = op(result, result, forSquaring);
0 commit comments