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
path: root/lm
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2013-05-29 13:30:39 +0400
committerKenneth Heafield <github@kheafield.com>2013-05-29 13:30:39 +0400
commit59bd7deb4b6b9c4f7b3b7dbb055783528fbc31ca (patch)
tree97b0b605cb49b7f53f568e929675b6d8802a732e /lm
parentb5bb5007738f731a55178dde5ab085b53422f22d (diff)
Tetsuo's two patches
Diffstat (limited to 'lm')
-rw-r--r--lm/vocab.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lm/vocab.hh b/lm/vocab.hh
index 3902f1174..226ae4385 100644
--- a/lm/vocab.hh
+++ b/lm/vocab.hh
@@ -25,7 +25,7 @@ uint64_t HashForVocab(const char *str, std::size_t len);
inline uint64_t HashForVocab(const StringPiece &str) {
return HashForVocab(str.data(), str.length());
}
-class ProbingVocabularyHeader;
+struct ProbingVocabularyHeader;
} // namespace detail
class WriteWordsWrapper : public EnumerateVocab {