Skip to content

Commit

Permalink
enhance: remove unused code (milvus-io#30601)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandr Guzhva <[email protected]>
  • Loading branch information
alexanderguzhva authored Feb 13, 2024
1 parent 84566dc commit a297baa
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions internal/core/src/exec/expression/TermExpr.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,6 @@
namespace milvus {
namespace exec {

template <typename T>
struct TermElementFuncFlat {
bool
operator()(const T* src, size_t n, T val) {
for (size_t i = 0; i < n; ++i) {
if (src[i] == val) {
return true;
}
}
}
};

template <typename T>
struct TermElementFuncSet {
bool
Expand Down

0 comments on commit a297baa

Please sign in to comment.