diff options
author | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-15 21:55:55 +0000 |
---|---|---|
committer | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-15 21:55:55 +0000 |
commit | c14b17b45c1215b1d4a1495c161531d3e8936a34 (patch) | |
tree | 0486e57bc85b38d60f01b3774a1407c455d3ded0 /extools | |
parent | 19bd995999b6935c16ecbd35d8277939b3d51bc2 (diff) |
fix potential namespace conflict:
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@271 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'extools')
-rw-r--r-- | extools/extract.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extools/extract.cc b/extools/extract.cc index 44cd51af..a9de142e 100644 --- a/extools/extract.cc +++ b/extools/extract.cc @@ -8,6 +8,7 @@ #include <boost/tuple/tuple_comparison.hpp> #include <boost/functional/hash.hpp> +#include <boost/tuple/tuple.hpp> #include "sentence_pair.h" #include "tdict.h" @@ -15,8 +16,9 @@ #include "array2d.h" using namespace std; -using namespace tr1; using namespace boost; +using std::tr1::unordered_map; +using boost::tuple; namespace { inline bool IsWhitespace(char c) { return c == ' ' || c == '\t'; } |