aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-11-12 20:21:25 +0100
committerGitHub <noreply@github.com>2021-11-12 20:21:25 +0100
commit3f54f188382c09c409171145cd246b7730db3c6c (patch)
tree30e6068deac13a90a7f5a1c6f490b4625c77dcd3
parent720943c4c6c3d520e3ae140e9b814c572d21cd7f (diff)
parent558cb2935edf3c5d5786f686a12ff22429a376ad (diff)
Merge pull request #19996 from vespa-engine/toregge/add-optional-include-for-bucketdb
proton::BucketDB uses std::optional. Add needed include.
-rw-r--r--searchcore/src/vespa/searchcore/proton/bucketdb/bucketdb.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/bucketdb/bucketdb.cpp b/searchcore/src/vespa/searchcore/proton/bucketdb/bucketdb.cpp
index e1b631a2124..c7a3103af22 100644
--- a/searchcore/src/vespa/searchcore/proton/bucketdb/bucketdb.cpp
+++ b/searchcore/src/vespa/searchcore/proton/bucketdb/bucketdb.cpp
@@ -4,6 +4,7 @@
#include "remove_batch_entry.h"
#include <cassert>
#include <algorithm>
+#include <optional>
using document::GlobalId;
using storage::spi::BucketChecksum;