Skip to content

Commit fbc5815

Browse files
authored
Take unordered_map from std namespace
1 parent 011e17b commit fbc5815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/xm_hashmap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef __XMHASHMAP_H__
22
#define __XMHASHMAP_H__
33

4-
#include <tr1/unordered_map>
5-
namespace HashNamespace = std::tr1;
4+
#include <unordered_map>
5+
namespace HashNamespace = std;
66
#endif

0 commit comments

Comments
 (0)