Skip to content

Commit bee7202

Browse files
committed
rm needless format
1 parent 48f9604 commit bee7202

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inc/zoo/swar/associative_iteration.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ constexpr auto associativeOperatorIterated_regressive(
200200
const CountHalver ch
201201
) {
202202
auto result = neutral;
203-
if (!log2Count) { return result; }
204-
for (;;) {
203+
if(!log2Count) { return result; }
204+
for(;;) {
205205
result = op(result, base, count);
206206
if(!--log2Count) { break; }
207207
result = op(result, result, forSquaring);

0 commit comments

Comments
 (0)