summaryrefslogtreecommitdiffstats
path: root/src/include/unordered_map.h
blob: aee5f5a7639a51c028c48d5f21572167b99bb7c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CEPH_UNORDERED_MAP_H
#define CEPH_UNORDERED_MAP_H

#include <unordered_map>

namespace ceph {
  using std::unordered_map;
  using std::unordered_multimap;
}

#endif