]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
key_value_store/kv_flat_btree_async: add using namespace std
authorSamuel Just <sjust@redhat.com>
Thu, 19 Aug 2021 21:42:21 +0000 (21:42 +0000)
committerSamuel Just <sjust@redhat.com>
Thu, 26 Aug 2021 20:49:13 +0000 (13:49 -0700)
Not worth annotating the specific elements of std used.

Signed-off-by: Samuel Just <sjust@redhat.com>
src/key_value_store/kv_flat_btree_async.cc

index 6c2fd0ef796c4e9963bffa62c48e9784e5db3e80..19c388cf0dcd48ca379f7a3dc775e283f3bd7c85 100644 (file)
 #include <iterator>
 
 using ceph::bufferlist;
-using std::cout;
-using std::vector;
-using std::cerr;
-using std::stringstream;
+using namespace std;
 
 bool index_data::is_timed_out(utime_t now, utime_t timeout) const {
   return prefix != "" && now - ts > timeout;