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:
authorTetsuo Kiso <tetsuo-s@is.naist.jp>2012-05-05 13:51:12 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2012-05-05 13:51:12 +0400
commit857398dfbd1b7470cf7a8c70ff04a273274827d6 (patch)
treefaf2ff9fe10082da6b9ca35f355a54ace75b6eb4 /OnDiskPt
parentf8d88920a1e0b2487429624f4a2c07ea717ee2aa (diff)
Fix warnings: -Wreorder and -Wmismatched-tags.
Diffstat (limited to 'OnDiskPt')
-rw-r--r--OnDiskPt/PhraseNode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/OnDiskPt/PhraseNode.cpp b/OnDiskPt/PhraseNode.cpp
index 98a55dbc1..9a5cdea20 100644
--- a/OnDiskPt/PhraseNode.cpp
+++ b/OnDiskPt/PhraseNode.cpp
@@ -38,10 +38,10 @@ size_t PhraseNode::GetNodeSize(size_t numChildren, size_t wordSize, size_t count
}
PhraseNode::PhraseNode()
- :m_currChild(NULL)
+ : m_value(0)
+ ,m_currChild(NULL)
,m_saved(false)
,m_memLoad(NULL)
- ,m_value(0)
{
}