From: Ronen Friedman Date: Mon, 2 May 2022 17:39:55 +0000 (+0000) Subject: test: fixing compilation issues with kv_store_bench X-Git-Tag: v18.0.0~887^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ce7e7e512edbf4f21991d4387fb235660448d9c4;p=ceph.git 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 --- diff --git a/src/test/kv_store_bench.cc b/src/test/kv_store_bench.cc index f5de5a9117af2..6a9c9229eed8b 100644 --- a/src/test/kv_store_bench.cc +++ b/src/test/kv_store_bench.cc @@ -19,6 +19,14 @@ #include #include +using std::stringstream; +using std::cout; +using std::string; +using std::pair; +using std::make_pair; +using std::map; +using std::cerr; + KvStoreBench::KvStoreBench() : entries(30), ops(100),