Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / include / memory.h
1 #ifndef CEPH_MEMORY_H
2 #define CEPH_MEMORY_H
3
4 #include <memory>
5
6 namespace ceph {
7   using std::shared_ptr;
8   using std::weak_ptr;
9   using std::unique_ptr;
10   using std::static_pointer_cast;
11 }
12
13 #endif