mirror of
https://github.com/ceph/ceph
synced 2025-01-20 10:01:45 +00:00
2d18941f9d
Signed-off-by: Casey Bodley <cbodley@redhat.com>
14 lines
193 B
C++
14 lines
193 B
C++
#ifndef CEPH_UNORDERED_MAP_H
|
|
#define CEPH_UNORDERED_MAP_H
|
|
|
|
#include <ciso646>
|
|
|
|
#include <unordered_map>
|
|
|
|
namespace ceph {
|
|
using std::unordered_map;
|
|
using std::unordered_multimap;
|
|
}
|
|
|
|
#endif
|