]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/test/osd/TestOpStat.h
import quincy beta 17.1.0
[ceph.git] / ceph / src / test / osd / TestOpStat.h
index a279287fde646ff1a85a1839eb1631bd772687c5..2c680558ff12fe4fdabb1dff8621f3bf62ebe634 100644 (file)
@@ -23,8 +23,8 @@ public:
 
   class TypeStatus {
   public:
-    map<TestOp*,uint64_t> inflight;
-    multiset<uint64_t> latencies;
+    std::map<TestOp*,uint64_t> inflight;
+    std::multiset<uint64_t> latencies;
     void begin(TestOp *in)
     {
       ceph_assert(!inflight.count(in));
@@ -39,9 +39,9 @@ public:
       inflight.erase(in);
     }
 
-    void export_latencies(map<double,uint64_t> &in) const;
+    void export_latencies(std::map<double,uint64_t> &in) const;
   };
-  map<string,TypeStatus> stats;
+  std::map<std::string,TypeStatus> stats;
 
   void begin(TestOp *in);
   void end(TestOp *in);