aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/posting_info.h
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-01-31 00:12:30 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-01-31 00:26:12 +0100
commit83bf99b58a3ac15a0b9bae2f781289a2dca29251 (patch)
tree9e85e37ff972b2d828ea183f19ea673df64b7a5c /searchlib/src/vespa/searchlib/queryeval/posting_info.h
parent7e3d9aab34fe24a49584d2bd7d9feea7435967ff (diff)
Hide the BitVector a bit more.
Diffstat (limited to 'searchlib/src/vespa/searchlib/queryeval/posting_info.h')
-rw-r--r--searchlib/src/vespa/searchlib/queryeval/posting_info.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/queryeval/posting_info.h b/searchlib/src/vespa/searchlib/queryeval/posting_info.h
index 71f5214f382..e8d463c45bc 100644
--- a/searchlib/src/vespa/searchlib/queryeval/posting_info.h
+++ b/searchlib/src/vespa/searchlib/queryeval/posting_info.h
@@ -1,6 +1,9 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
+#include <cstdint>
+#include <memory>
+
namespace search {
namespace queryeval {
@@ -12,7 +15,7 @@ namespace queryeval {
* used during evaluation.
*/
struct PostingInfo {
- virtual ~PostingInfo() {}
+ virtual ~PostingInfo() { }
};