summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-05 08:59:51 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-02-05 08:59:51 +0000
commitfea7b419042f12446f835305952b82bd980dabfc (patch)
treed1ec7bc26d5a41e09be060a215e264bb4f183399 /searchlib
parent5ae16000e58c385aa5d5da256bbe71a38c6529fa (diff)
GC unused template
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/attributevector.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/attributevector.cpp b/searchlib/src/vespa/searchlib/attribute/attributevector.cpp
index d2574bd32a2..af114f3247b 100644
--- a/searchlib/src/vespa/searchlib/attribute/attributevector.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/attributevector.cpp
@@ -47,13 +47,6 @@ const vespalib::string docIdLimitTag = "docIdLimit";
constexpr size_t DIRECTIO_ALIGNMENT(4096);
-template <typename T>
-struct FuncMax : public std::binary_function<T, T, T> {
- T operator() (const T & x, const T & y) const {
- return std::max(x, y);
- }
-};
-
}
namespace search {