summaryrefslogtreecommitdiffstats
path: root/searchcommon
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahoo-inc.com>2017-03-17 15:54:38 +0100
committerGitHub <noreply@github.com>2017-03-17 15:54:38 +0100
commit402b6f92de4b7e7e7f74e2351a84c71784f0f421 (patch)
tree13d059721413745f5abc632363f664fb42283c4a /searchcommon
parent8a559881e526da5eba13c74b0af7964979a13b76 (diff)
Add imported search context and iteration (#2031)
Implement search context and iteration for imported attributes
Diffstat (limited to 'searchcommon')
-rw-r--r--searchcommon/src/vespa/searchcommon/attribute/search_context_params.h2
-rw-r--r--searchcommon/src/vespa/searchcommon/common/range.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/searchcommon/src/vespa/searchcommon/attribute/search_context_params.h b/searchcommon/src/vespa/searchcommon/attribute/search_context_params.h
index d15a97629f0..96c3d7f3470 100644
--- a/searchcommon/src/vespa/searchcommon/attribute/search_context_params.h
+++ b/searchcommon/src/vespa/searchcommon/attribute/search_context_params.h
@@ -2,6 +2,8 @@
#pragma once
+#include <stddef.h>
+
namespace search {
namespace attribute {
diff --git a/searchcommon/src/vespa/searchcommon/common/range.h b/searchcommon/src/vespa/searchcommon/common/range.h
index f33630daaf4..5bcf2355eb9 100644
--- a/searchcommon/src/vespa/searchcommon/common/range.h
+++ b/searchcommon/src/vespa/searchcommon/common/range.h
@@ -4,6 +4,9 @@
#pragma once
+#include <limits>
+#include <stdint.h>
+
namespace search
{