summaryrefslogtreecommitdiff
path: root/utils/maxent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/maxent.cpp')
-rw-r--r--utils/maxent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/maxent.cpp b/utils/maxent.cpp
index 9115f6f2..0f49ee9d 100644
--- a/utils/maxent.cpp
+++ b/utils/maxent.cpp
@@ -142,7 +142,7 @@ int ME_Model::make_feature_bag(const int cutoff) {
// count the occurrences of features
#ifdef USE_HASH_MAP
- typedef __gnu_cxx::hash_map<unsigned int, int> map_type;
+ typedef std::unordered_map<unsigned int, int> map_type;
#else
typedef std::map<unsigned int, int> map_type;
#endif