Skip to content

Commit

Permalink
Take unordered_map from std namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Jun 2, 2020
1 parent 011e17b commit fbc5815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/include/xm_hashmap.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef __XMHASHMAP_H__
#define __XMHASHMAP_H__

#include <tr1/unordered_map>
namespace HashNamespace = std::tr1;
#include <unordered_map>
namespace HashNamespace = std;
#endif

0 comments on commit fbc5815

Please sign in to comment.