Skip to content

Commit 194da62

Browse files
committed
Fix compilation error
1 parent b184798 commit 194da62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cpp/epsilon_search_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ int main() {
6262
assert(dist >=0 && dist <= epsilon2);
6363
}
6464
std::priority_queue<std::pair<float, hnswlib::labeltype>> result_brute =
65-
result_brute = alg_brute->searchKnn(query_data, max_elements);
65+
alg_brute->searchKnn(query_data, max_elements);
6666

6767
// check recall
6868
std::unordered_set<hnswlib::labeltype> gt_labels;

0 commit comments

Comments
 (0)