Skip to content

Commit d1802a5

Browse files
authored
Remove comments from update and query functions
1 parent 54118a2 commit d1802a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/data_structures_[l,r)/seg_tree_uncommon/implicit.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ template<int N> struct implicit_seg_tree {
3535
tree[v].lazy = 0;
3636
}
3737
}
38-
void update(int l, int r, ll add) { // [l, r)
38+
void update(int l, int r, ll add) {
3939
update(l, r, add, root_l, root_r, 0);
4040
}
4141
void update(int l, int r, ll add, int tl, int tr,
@@ -49,7 +49,7 @@ template<int N> struct implicit_seg_tree {
4949
tree[v].num =
5050
op(tree[tree[v].lch].num, tree[tree[v].rch].num);
5151
}
52-
dt query(int l, int r) { // [l, r)
52+
dt query(int l, int r) {
5353
return query(l, r, root_l, root_r, 0);
5454
}
5555
dt query(int l, int r, int tl, int tr, int v) {

0 commit comments

Comments
 (0)