diff options
Diffstat (limited to 'tests/memisam_tests.cpp')
| -rw-r--r-- | tests/memisam_tests.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/memisam_tests.cpp b/tests/memisam_tests.cpp index aaf0b51..713a732 100644 --- a/tests/memisam_tests.cpp +++ b/tests/memisam_tests.cpp @@ -206,17 +206,6 @@ START_TEST(t_irs_query) END_TEST -template <RecordInterface R> -std::vector<R> strip_wrapping(std::vector<Wrapped<R>> vec) { - std::vector<R> out(vec.size()); - for (size_t i=0; i<vec.size(); i++) { - out[i] = vec[i].rec; - } - - return out; -} - - START_TEST(t_irs_query_merge) { size_t n=1000; |