Skip to content

Commit ce7e7e5

Browse files
committed
test: fixing compilation issues with kv_store_bench
Existing code relied on an include path that had specified 'using std'. Signed-off-by: Ronen Friedman <[email protected]>
1 parent b7d2b25 commit ce7e7e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/test/kv_store_bench.cc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919
#include <sstream>
2020
#include <cmath>
2121

22+
using std::stringstream;
23+
using std::cout;
24+
using std::string;
25+
using std::pair;
26+
using std::make_pair;
27+
using std::map;
28+
using std::cerr;
29+
2230
KvStoreBench::KvStoreBench()
2331
: entries(30),
2432
ops(100),

0 commit comments

Comments
 (0)