diff options
author | Chris Dyer <cdyer@Chriss-MacBook-Air.local> | 2013-11-10 00:58:44 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@Chriss-MacBook-Air.local> | 2013-11-10 00:58:44 -0500 |
commit | 2d3948b98bb9e8c7bad60f1acd99ff0b42b3ae30 (patch) | |
tree | 22cd235bd6c94ee25c1ab9b2cf2a2d1d9aaec5c5 /mteval/ter.cc | |
parent | 074fa88375967adababc632ea763e9dea389831e (diff) |
guard against direct includes of tr1
Diffstat (limited to 'mteval/ter.cc')
-rw-r--r-- | mteval/ter.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mteval/ter.cc b/mteval/ter.cc index cacc5b00..9da54306 100644 --- a/mteval/ter.cc +++ b/mteval/ter.cc @@ -5,7 +5,12 @@ #include <iostream> #include <limits> #include <sstream> -#include <tr1/unordered_map> +#ifdef HAVE_CXX11 +# include <unordered_map> +#else +# include <tr1/unordered_map> +namespace std { using std::tr1::unordered_map; } +#endif #include <set> #include <valarray> #include <boost/functional/hash.hpp> @@ -16,7 +21,6 @@ const bool ter_use_average_ref_len = true; const int ter_short_circuit_long_sentences = -1; using namespace std; -using namespace std::tr1; struct COSTS { static const float substitution; |