summaryrefslogtreecommitdiff
path: root/extools
diff options
context:
space:
mode:
Diffstat (limited to 'extools')
-rw-r--r--extools/extract.cc4
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'; }