diff options
author | Wu, Ke <wuke@cs.umd.edu> | 2014-10-07 17:41:19 -0400 |
---|---|---|
committer | Wu, Ke <wuke@cs.umd.edu> | 2014-10-07 17:41:19 -0400 |
commit | ebeda1e75c77dd9044f1b9902770896e3009ae55 (patch) | |
tree | ea4226f46e1239f721a63cb834f544345361ca98 /utils/synutils/constituent_reorder_model.cc | |
parent | 93c444e643e76fe18f852ce07635850e963eea16 (diff) |
Make synutils compile
Diffstat (limited to 'utils/synutils/constituent_reorder_model.cc')
-rw-r--r-- | utils/synutils/constituent_reorder_model.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/synutils/constituent_reorder_model.cc b/utils/synutils/constituent_reorder_model.cc index a4fb9627..78d61b90 100644 --- a/utils/synutils/constituent_reorder_model.cc +++ b/utils/synutils/constituent_reorder_model.cc @@ -12,12 +12,12 @@ #include "utility.h" #include "tsuruoka_maxent.h" -#include <tr1/unordered_map> +#include <unordered_map> using namespace std; -typedef std::tr1::unordered_map<std::string, int> Map; -typedef std::tr1::unordered_map<std::string, int>::iterator Iterator; +typedef std::unordered_map<std::string, int> Map; +typedef std::unordered_map<std::string, int>::iterator Iterator; namespace po = boost::program_options; |