aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/queryeval
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-02-26 22:02:17 +0100
committerTor Egge <Tor.Egge@online.no>2022-02-26 22:02:29 +0100
commit5269c399d694e2ab45bf3e76f86cea4d7de0ab17 (patch)
treec04075c3546f2cc3578245c190a1a8bbf58b4779 /searchlib/src/tests/queryeval
parente5f4e91644625fa092e2f74c57faa740adbc8f62 (diff)
Stop using std::binary_function (searchlib).
Diffstat (limited to 'searchlib/src/tests/queryeval')
-rw-r--r--searchlib/src/tests/queryeval/weak_and/rise_wand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/queryeval/weak_and/rise_wand.h b/searchlib/src/tests/queryeval/weak_and/rise_wand.h
index 87f59eb3d78..7a5e46c05ea 100644
--- a/searchlib/src/tests/queryeval/weak_and/rise_wand.h
+++ b/searchlib/src/tests/queryeval/weak_and/rise_wand.h
@@ -36,7 +36,7 @@ public:
private:
// comparator class that compares two streams. The variables a and b are
// logically indices into the streams vector.
- class StreamComparator : public std::binary_function<uint16_t, uint16_t, bool>
+ class StreamComparator
{
private:
const docid_t *_streamDocIds;