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/SCFG/nbest/NBests.h')
-rw-r--r--moses2/SCFG/nbest/NBests.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses2/SCFG/nbest/NBests.h b/moses2/SCFG/nbest/NBests.h
index 97fe9a025..7cddec1be 100644
--- a/moses2/SCFG/nbest/NBests.h
+++ b/moses2/SCFG/nbest/NBests.h
@@ -6,7 +6,7 @@
*/
#pragma once
-#include <boost/unordered_set.hpp>
+#include <unordered_set>
#include "NBest.h"
namespace Moses2
@@ -18,7 +18,7 @@ class NBests
{
public:
Contenders contenders;
- boost::unordered_set<size_t> distinctHypos;
+ std::unordered_set<size_t> distinctHypos;
NBests(const SCFG::Manager &mgr,
const ArcList &arcList,