aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-03-04 21:42:05 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-03-04 21:42:05 +0000
commit1f52c67427b18d8a5ef16e78085be2b5f3253ec5 (patch)
tree2866781335caf2033abf7683c23ac318af4d4275 /searchlib/src/vespa/searchlib/query/streaming/queryterm.h
parent4d4b1024cbaa9ad537927d66309db8aa9f628c37 (diff)
No move or copy construction.
Diffstat (limited to 'searchlib/src/vespa/searchlib/query/streaming/queryterm.h')
-rw-r--r--searchlib/src/vespa/searchlib/query/streaming/queryterm.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/query/streaming/queryterm.h b/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
index 4f323b7f9f1..3eb95209b58 100644
--- a/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
+++ b/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
@@ -55,8 +55,10 @@ public:
};
QueryTerm();
QueryTerm(std::unique_ptr<QueryNodeResultBase> resultBase, const string & term, const string & index, Type type);
- QueryTerm(QueryTerm &&) noexcept;
- QueryTerm & operator = (QueryTerm &&) noexcept;
+ QueryTerm(const QueryTerm &) = delete;
+ QueryTerm & operator = (const QueryTerm &) = delete;
+ QueryTerm(QueryTerm &&) = delete;
+ QueryTerm & operator = (QueryTerm &&) = delete;
~QueryTerm();
bool evaluate() const override;
const HitList & evaluateHits(HitList & hl) const override;