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 445d734 commit 7bd394aCopy full SHA for 7bd394a
sliding_window.hpp
@@ -55,7 +55,7 @@ class iter::impl::WindowSlider {
55
while (i < window_sz && this->sub_iter != in_end) {
56
this->window.get().push_back(this->sub_iter);
57
++i;
58
- if (i != window_sz) ++this->sub_iter;
+ if (i != window_sz) { ++this->sub_iter; }
59
}
60
61
0 commit comments