diff --git a/benchmarks/bulk-insert-and-query.cc b/benchmarks/bulk-insert-and-query.cc index 1dbb494..52fd468 100644 --- a/benchmarks/bulk-insert-and-query.cc +++ b/benchmarks/bulk-insert-and-query.cc @@ -133,7 +133,6 @@ size_t count_distinct(InputIt first, InputIt last) { size_t match_size(vector a, vector b, size_t * distincta, size_t * distinctb) { // could obviously be accelerated with a Bloom filter // But this is surprisingly fast! - vector result; std::sort(a.begin(), a.end()); std::sort(b.begin(), b.end()); if(distincta != NULL) *distincta = count_distinct(a.begin(), a.end());