summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-05-27 13:07:41 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-05-27 13:07:41 +0200
commitb60150a631c814f7df4a5c521c730e52f9aae287 (patch)
treed85913bdef5b80d00eb5b3638ebf2a6cb1da4d0e /searchlib
parent0dc08a6573ad47bae8bcf9bb7fa29cf859314163 (diff)
Fix copy constructor.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/fef/termfieldmatchdata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.cpp b/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.cpp
index 2b7b67e8365..4de84866edf 100644
--- a/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.cpp
+++ b/searchlib/src/vespa/searchlib/fef/termfieldmatchdata.cpp
@@ -20,7 +20,7 @@ TermFieldMatchData::TermFieldMatchData() :
TermFieldMatchData::TermFieldMatchData(const TermFieldMatchData & rhs) :
_docId(rhs._docId),
_fieldId(rhs._fieldId),
- _flags(UNPACK_ALL_FEATURES_MASK),
+ _flags(rhs._flags),
_sz(0),
_numOccs(0),
_fieldLength(0)