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:
authorHieu Hoang <hieu@hoang.co.uk>2013-02-05 23:02:36 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-02-05 23:02:36 +0400
commit599d5bde3d28f12283d9a65cb90f2eb5ed719df0 (patch)
tree0e930a45e1a17fbcd9279c708e2cdf9a65b6b9a1 /moses/GenerationDictionary.h
parent4417f254a2590f0ec9867f0b357591796496cac3 (diff)
GenerationDictionary doesn't inherit from Dictionary
Diffstat (limited to 'moses/GenerationDictionary.h')
-rw-r--r--moses/GenerationDictionary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/GenerationDictionary.h b/moses/GenerationDictionary.h
index 98950f85a..08ff5ab53 100644
--- a/moses/GenerationDictionary.h
+++ b/moses/GenerationDictionary.h
@@ -43,7 +43,7 @@ typedef std::map < Word , ScoreComponentCollection > OutputWordCollection;
/** Implementation of a generation table in a trie.
*/
-class GenerationDictionary : public Dictionary, public DecodeFeature
+class GenerationDictionary : public DecodeFeature
{
typedef std::map<const Word* , OutputWordCollection, WordComparer> Collection;
protected: