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-07-08 13:37:53 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-07-08 13:37:53 +0400
commita602e2052f39670451a16a867791a847fb6253e8 (patch)
tree2763338a1e0715008a62e0186e8bd6ca0f64337b /moses/Word.h
parented6b5add670f2000548bdf3d2ae166be92c1b531 (diff)
parentd3b4c11be24d8c2b0c38ad9463a8e4def1a4e114 (diff)
Merge github.com:moses-smt/mosesdecoder into hieu_opt_input2
Diffstat (limited to 'moses/Word.h')
-rw-r--r--moses/Word.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/moses/Word.h b/moses/Word.h
index 6a91f1a76..1b07a0345 100644
--- a/moses/Word.h
+++ b/moses/Word.h
@@ -59,8 +59,7 @@ public:
/** deep copy */
Word(const Word &copy)
:m_isNonTerminal(copy.m_isNonTerminal)
- ,m_isOOV(copy.m_isOOV)
- {
+ ,m_isOOV(copy.m_isOOV) {
std::memcpy(m_factorArray, copy.m_factorArray, sizeof(FactorArray));
}