summaryrefslogtreecommitdiff
path: root/decoder/ff_wordset.h
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-11-29 21:39:02 +0100
committerPatrick Simianer <p@simianer.de>2011-11-29 21:39:02 +0100
commitaf6c83df01d105a32c7b2ac346a4225e28dd6dfc (patch)
tree539285a6774b505fac9b20cf08bd8ca1b05a39d9 /decoder/ff_wordset.h
parent9802defc41e9aa523180656611c4f7fcc5ef51c8 (diff)
parent3789c4ced79140c5ab62379557d2295688972e27 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'decoder/ff_wordset.h')
-rw-r--r--decoder/ff_wordset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/decoder/ff_wordset.h b/decoder/ff_wordset.h
index 643097ef..7c9a3fb7 100644
--- a/decoder/ff_wordset.h
+++ b/decoder/ff_wordset.h
@@ -3,7 +3,7 @@
#include "ff.h"
-#include <boost/unordered/unordered_set.hpp>
+#include <tr1/unordered_set>
#include <boost/algorithm/string.hpp>
#include <vector>
@@ -43,7 +43,7 @@ class WordSet : public FeatureFunction {
void* context) const;
private:
- static void loadVocab(const std::string& vocabFile, boost::unordered_set<WordID>* vocab) {
+ static void loadVocab(const std::string& vocabFile, std::tr1::unordered_set<WordID>* vocab) {
std::ifstream file;
std::string line;
@@ -105,7 +105,7 @@ class WordSet : public FeatureFunction {
int fid_;
bool oovMode_;
- boost::unordered_set<WordID> vocab_;
+ std::tr1::unordered_set<WordID> vocab_;
};
#endif