summaryrefslogtreecommitdiffstats
path: root/searchcommon
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-11-27 14:25:44 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-11-28 10:15:37 +0000
commit2eec716d8c67cf9ce9f9aab478b46a22267907a3 (patch)
tree8c8fca573d82421f9fd11995e05545c299a20511 /searchcommon
parentc59540fa1187b5f73d9cb03fe51cc83f29de8641 (diff)
Rename QueryTermBase -> QueryTermUCS4 and move to separate h and cpp files.
Diffstat (limited to 'searchcommon')
-rw-r--r--searchcommon/src/vespa/searchcommon/attribute/i_search_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcommon/src/vespa/searchcommon/attribute/i_search_context.h b/searchcommon/src/vespa/searchcommon/attribute/i_search_context.h
index f75bf8699c8..9a24ab82c9f 100644
--- a/searchcommon/src/vespa/searchcommon/attribute/i_search_context.h
+++ b/searchcommon/src/vespa/searchcommon/attribute/i_search_context.h
@@ -7,7 +7,7 @@
namespace search::fef { class TermFieldMatchData; }
namespace search::queryeval { class SearchIterator; }
-namespace search { class QueryTermBase; }
+namespace search { class QueryTermUCS4; }
namespace search::attribute {
@@ -47,7 +47,7 @@ public:
virtual bool valid() const = 0;
virtual Int64Range getAsIntegerTerm() const = 0;
- virtual const QueryTermBase * queryTerm() const = 0;
+ virtual const QueryTermUCS4 * queryTerm() const = 0;
virtual const vespalib::string &attributeName() const = 0;
int32_t find(DocId docId, int32_t elementId, int32_t &weight) const { return onFind(docId, elementId, weight); }