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/defer/CubePruningBitmapStack/Stack.h')
-rw-r--r--moses2/defer/CubePruningBitmapStack/Stack.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/moses2/defer/CubePruningBitmapStack/Stack.h b/moses2/defer/CubePruningBitmapStack/Stack.h
index f052fab42..b4d6ee1be 100644
--- a/moses2/defer/CubePruningBitmapStack/Stack.h
+++ b/moses2/defer/CubePruningBitmapStack/Stack.h
@@ -6,7 +6,6 @@
*/
#pragma once
#include <boost/unordered_map.hpp>
-#include <boost/unordered_set.hpp>
#include <deque>
#include "../Hypothesis.h"
#include "../../TypeDef.h"
@@ -27,7 +26,7 @@ typedef Vector<const Hypothesis*> Hypotheses;
class MiniStack
{
public:
- typedef boost::unordered_set<const Hypothesis*,
+ typedef std::unordered_set<const Hypothesis*,
UnorderedComparer<Hypothesis>,
UnorderedComparer<Hypothesis>
> _HCType;