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/CubePruningCardinalStack/Stack.h')
-rw-r--r--moses2/defer/CubePruningCardinalStack/Stack.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/moses2/defer/CubePruningCardinalStack/Stack.h b/moses2/defer/CubePruningCardinalStack/Stack.h
index 94e987b7b..06ca54a57 100644
--- a/moses2/defer/CubePruningCardinalStack/Stack.h
+++ b/moses2/defer/CubePruningCardinalStack/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"
@@ -29,7 +28,7 @@ typedef Vector<const Hypothesis*> Hypotheses;
class Stack
{
protected:
- typedef boost::unordered_set<const Hypothesis*,
+ typedef std::unordered_set<const Hypothesis*,
UnorderedComparer<Hypothesis>,
UnorderedComparer<Hypothesis>
> _HCType;