diff options
author | Wilker Aziz <will.aziz@gmail.com> | 2014-09-22 11:07:12 +0100 |
---|---|---|
committer | Wilker Aziz <will.aziz@gmail.com> | 2014-09-22 11:07:12 +0100 |
commit | 2e9ef8da66ca1b82c1a174249ace8353916968e6 (patch) | |
tree | 406551a5445810e5a3ebe19d27fde8ba1bbbec6d /decoder/ff_csplit.cc | |
parent | f42718114e3a6a1420d258a5a2b0962934468ea8 (diff) |
added missing c++11 headers (could not compile with gcc-4.8)
Diffstat (limited to 'decoder/ff_csplit.cc')
-rw-r--r-- | decoder/ff_csplit.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/decoder/ff_csplit.cc b/decoder/ff_csplit.cc index a0e538d3..550ff69a 100644 --- a/decoder/ff_csplit.cc +++ b/decoder/ff_csplit.cc @@ -2,6 +2,8 @@ #include <set> #include <cstring> +#include <unordered_set> +#include <unordered_map> #include "klm/lm/model.hh" @@ -14,12 +16,6 @@ #include "stringlib.h" #include "tdict.h" -#ifndef HAVE_OLD_CPP -# include <unordered_set> -#else -# include <tr1/unordered_set> -namespace std { using std::tr1::unordered_set; } -#endif using namespace std; struct BasicCSplitFeaturesImpl { |