Skip to content

Commit 52dffa6

Browse files
committed
fix
1 parent 25fc1d7 commit 52dffa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/data_structures/seg_tree_uncommon/implicit.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ template<int N> struct implicit_seg_tree {
88
if (l[0] == r[0]) return {l[0], l[1] + r[1]};
99
return min(l, r);
1010
}
11-
static const dt unit{LLONG_MAX, 0LL};
11+
const dt unit{LLONG_MAX, 0LL};
1212
struct node {
1313
dt num;
1414
ll lazy = 0;

0 commit comments

Comments
 (0)