summaryrefslogtreecommitdiff
path: root/datastructures/persistent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'datastructures/persistent.cpp')
-rw-r--r--datastructures/persistent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/datastructures/persistent.cpp b/datastructures/persistent.cpp
index 0a65a79..4093cdc 100644
--- a/datastructures/persistent.cpp
+++ b/datastructures/persistent.cpp
@@ -7,7 +7,7 @@ struct persistent {
: time(time), data(1, {time, value}) {}
T get(int t) {
- return prev(upper_bound(all(data), {t+1, {}}))->second;
+ return prev(upper_bound(all(data), pair{t+1, T{}}))->second;
}
int set(T value) {