diff options
| -rw-r--r-- | benchmarks/include/file_util.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/benchmarks/include/file_util.h b/benchmarks/include/file_util.h index ea8b42e..8dc1b5f 100644 --- a/benchmarks/include/file_util.h +++ b/benchmarks/include/file_util.h @@ -8,9 +8,6 @@ #include <cstring> #include <vector> -#include "framework/interface/Record.h" -#include "query/irs.h" - #pragma once template <typename QP> @@ -81,7 +78,7 @@ static std::vector<QP> read_knn_queries(std::string fname, size_t k) { return queries; } -template<de::KVPInterface R> +template<typename R> static std::vector<R> read_sosd_file(std::string &fname, size_t n) { std::fstream file; file.open(fname, std::ios::in | std::ios::binary); |