Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'moses2/PhraseBased/Manager.cpp')
-rw-r--r--moses2/PhraseBased/Manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses2/PhraseBased/Manager.cpp b/moses2/PhraseBased/Manager.cpp
index 28073d4f6..0a1f51dbd 100644
--- a/moses2/PhraseBased/Manager.cpp
+++ b/moses2/PhraseBased/Manager.cpp
@@ -6,7 +6,7 @@
*/
#include <boost/foreach.hpp>
#include <boost/functional/hash.hpp>
-#include <boost/unordered_set.hpp>
+#include <unordered_set>
#include <vector>
#include <sstream>
#include "Manager.h"
@@ -218,7 +218,7 @@ std::string Manager::OutputNBest()
{
arcLists.Sort();
- boost::unordered_set<size_t> distinctHypos;
+ std::unordered_set<size_t> distinctHypos;
TrellisPaths<TrellisPath> contenders;
m_search->AddInitialTrellisPaths(contenders);