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:
authorDavid Madl <git@abanbytes.eu>2015-11-12 18:14:42 +0300
committerDavid Madl <git@abanbytes.eu>2015-11-17 19:15:13 +0300
commite5a8438149e73c30840ef41c5a75a4288c75846b (patch)
treef39cb4a6b38adc8d96737157086a8dcb09d95277 /moses/Phrase.cpp
parente36fb96557d0079e88eef4fc2f38147ff9455b0c (diff)
document @param lhs in Phrase::CreateFromString()
Diffstat (limited to 'moses/Phrase.cpp')
-rw-r--r--moses/Phrase.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/moses/Phrase.cpp b/moses/Phrase.cpp
index 6480b41e9..052918295 100644
--- a/moses/Phrase.cpp
+++ b/moses/Phrase.cpp
@@ -161,11 +161,10 @@ void Phrase::PrependWord(const Word &newWord)
m_words[0] = newWord;
}
-void Phrase::CreateFromString(FactorDirection direction
- ,const std::vector<FactorType> &factorOrder
- ,const StringPiece &phraseString
- // ,const StringPiece &factorDelimiter // eliminated [UG]
- ,Word **lhs)
+void Phrase::CreateFromString(FactorDirection direction,
+ const std::vector<FactorType> &factorOrder,
+ const StringPiece &phraseString,
+ Word **lhs)
{
// parse
vector<StringPiece> annotatedWordVector;