summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-07-10 12:14:21 +0000
committerArne Juul <arnej@verizonmedia.com>2020-07-15 15:39:22 +0000
commit2ff70ed24feb03080489b63bd84c30e26108066b (patch)
treea4e3a43723710418c7bef24d9c9a638c8f9c44c3 /searchlib
parentcd9cb9bb171a3f9dd8b75976c57f579a4bda9c10 (diff)
GC some unused code
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/tests/attribute/document_weight_iterator/document_weight_iterator_test.cpp1
-rw-r--r--searchlib/src/vespa/searchlib/query/tree/point.h4
-rw-r--r--searchlib/src/vespa/searchlib/query/tree/rectangle.h6
3 files changed, 0 insertions, 11 deletions
diff --git a/searchlib/src/tests/attribute/document_weight_iterator/document_weight_iterator_test.cpp b/searchlib/src/tests/attribute/document_weight_iterator/document_weight_iterator_test.cpp
index a64704a08e9..cf1506a9118 100644
--- a/searchlib/src/tests/attribute/document_weight_iterator/document_weight_iterator_test.cpp
+++ b/searchlib/src/tests/attribute/document_weight_iterator/document_weight_iterator_test.cpp
@@ -17,7 +17,6 @@
#include <vespa/searchlib/attribute/singlestringattribute.h>
#include <vespa/searchlib/index/dummyfileheadercontext.h>
#include <vespa/searchlib/query/tree/location.h>
-#include <vespa/searchlib/query/tree/point.h>
#include <vespa/searchlib/query/tree/simplequery.h>
#include <vespa/searchlib/queryeval/document_weight_search_iterator.h>
#include <vespa/searchlib/test/searchiteratorverifier.h>
diff --git a/searchlib/src/vespa/searchlib/query/tree/point.h b/searchlib/src/vespa/searchlib/query/tree/point.h
index 89d0bc1db44..110855a754a 100644
--- a/searchlib/src/vespa/searchlib/query/tree/point.h
+++ b/searchlib/src/vespa/searchlib/query/tree/point.h
@@ -13,8 +13,4 @@ struct Point {
Point(int64_t x_in, int64_t y_in) : x(x_in), y(y_in) {}
};
-inline bool operator==(const Point &p1, const Point &p2) {
- return p1.x == p2.x && p1.y == p2.y;
-}
-
}
diff --git a/searchlib/src/vespa/searchlib/query/tree/rectangle.h b/searchlib/src/vespa/searchlib/query/tree/rectangle.h
index 97be9ddeb32..7cdfc37488b 100644
--- a/searchlib/src/vespa/searchlib/query/tree/rectangle.h
+++ b/searchlib/src/vespa/searchlib/query/tree/rectangle.h
@@ -15,10 +15,4 @@ struct Rectangle {
: left(l), top(t), right(r), bottom(b) {}
};
-inline bool operator==(const Rectangle &r1, const Rectangle &r2) {
- return r1.left == r2.left && r1.right == r2.right
- && r1.top == r2.top && r1.bottom == r2.bottom;
}
-
-}
-