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:
authorKenneth Heafield <github@kheafield.com>2012-10-19 15:00:10 +0400
committerKenneth Heafield <github@kheafield.com>2012-10-19 15:00:10 +0400
commit5f6752714339deab2eff055e372855280d0edbb9 (patch)
treea7597dd2db2d436cdfa62b4887e64d1b850fc52e /lm/vocab.hh
parent232b3f2e5ab86041c2706393c5aaa16512d2892c (diff)
Bugfix vocabulary corruption on building
Diffstat (limited to 'lm/vocab.hh')
-rw-r--r--lm/vocab.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lm/vocab.hh b/lm/vocab.hh
index 074cd446e..de54eb064 100644
--- a/lm/vocab.hh
+++ b/lm/vocab.hh
@@ -35,7 +35,7 @@ class WriteWordsWrapper : public EnumerateVocab {
void Add(WordIndex index, const StringPiece &str);
- void Write(int fd);
+ void Write(int fd, uint64_t start);
private:
EnumerateVocab *inner_;