aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h')
-rw-r--r--searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h b/searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h
index a94f6087a0d..d0a75930ed5 100644
--- a/searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h
+++ b/searchlib/src/vespa/searchlib/test/fakedata/fakememtreeocc.h
@@ -77,8 +77,8 @@ public:
bool operator<(const PendingOp &rhs) const {
if (_wordIdx != rhs._wordIdx)
return _wordIdx < rhs._wordIdx;
- if (_docId != rhs._docId)
- return _docId < rhs._docId;
+ if (_docId != rhs.getDocId())
+ return _docId < rhs.getDocId();
return _seq < rhs._seq;
}
};