summaryrefslogtreecommitdiff
path: root/content/datastructures/lazyPropagation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'content/datastructures/lazyPropagation.cpp')
-rw-r--r--content/datastructures/lazyPropagation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/datastructures/lazyPropagation.cpp b/content/datastructures/lazyPropagation.cpp
index 441590e..ab91364 100644
--- a/content/datastructures/lazyPropagation.cpp
+++ b/content/datastructures/lazyPropagation.cpp
@@ -2,7 +2,7 @@ struct SegTree {
using T = ll; using U = ll;
int n;
static constexpr T E = 0; // Neutral element for combine
- static constexpr U UF = inf; // Unused value by updates
+ static constexpr U UF = INF; // Unused value by updates
vector<T> tree;
int h;
vector<U> lazy;