Skip to content

Commit 5b3cf38

Browse files
authored
undo change
1 parent d24f3d1 commit 5b3cf38

File tree

1 file changed

+1
-1
lines changed
  • library/data_structures_[l,r]/seg_tree_uncommon

1 file changed

+1
-1
lines changed

library/data_structures_[l,r]/seg_tree_uncommon/walk.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
int walk(int l, int r, const auto& f) {
2-
if (T x = s[l +n]; f(x))
2+
if (T x = s[l + n]; f(x))
33
for (l++; l <= r;) {
44
int u = l + n, v = __lg(min(u & -u, r - l + 1));
55
if (T y = op(x, s[u >> v]); f(y)) l += 1 << v, x = y;

0 commit comments

Comments
 (0)