summaryrefslogtreecommitdiffstats
path: root/src/include/unordered_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/unordered_map.h')
-rw-r--r--src/include/unordered_map.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/unordered_map.h b/src/include/unordered_map.h
new file mode 100644
index 000000000..aee5f5a76
--- /dev/null
+++ b/src/include/unordered_map.h
@@ -0,0 +1,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