Skip to content

Commit cb04a8f

Browse files
committed
Fix bug in tiling_iterator::operator++
1 parent 03b4abf commit cb04a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/kernel_float/tiling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ struct tiling_iterator {
565565
KERNEL_FLOAT_INLINE
566566
tiling_iterator operator++(int) {
567567
tiling_iterator old = *this;
568-
this ++;
568+
(*this)++;
569569
return old;
570570
}
571571

0 commit comments

Comments
 (0)