enhance: remove unused code (#30601)

Signed-off-by: Alexandr Guzhva <alexanderguzhva@gmail.com>
pull/30467/head^2
Alexander Guzhva 2024-02-12 21:26:47 -05:00 committed by GitHub
parent 84566dcb11
commit a297baae9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 12 deletions

View File

@ -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