summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorArne H Juul <arnej27959@users.noreply.github.com>2020-08-17 11:36:01 +0200
committerGitHub <noreply@github.com>2020-08-17 11:36:01 +0200
commit7d9930400ef9a124d7493d3f774a770afb0f27cb (patch)
tree44e07de999079c7fbddec5692e8a513cfe70e202 /searchlib
parent36df495eab3c64cea0b2f6eb886f12614be5eccb (diff)
parent0114d668b0db8b6281f1b588efc07a0d8e616f7f (diff)
Merge pull request #14054 from vespa-engine/arnej/extract-location-terms
allow extracting locations as terms
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/fef/termfieldmatchdata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.h b/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.h
index efa2e3f5bfa..633d85f98df 100644
--- a/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.h
+++ b/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.h
@@ -260,7 +260,7 @@ public:
* This indicates if this instance is actually used for ranking or not.
* @return true if it is not needed.
*/
- bool isNotNeeded() const { return ((_flags & (UNPACK_NORMAL_FEATURES_FLAG | UNPACK_INTERLEAVED_FEATURES_FLAG)) == 0u); }
+ bool isNotNeeded() const { return ((_flags & (UNPACK_NORMAL_FEATURES_FLAG | UNPACK_INTERLEAVED_FEATURES_FLAG)) == 0u); }
bool needs_normal_features() const { return ((_flags & UNPACK_NORMAL_FEATURES_FLAG) != 0u); }