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/moses
diff options
context:
space:
mode:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2015-02-10 02:13:53 +0300
committerUlrich Germann <ugermann@inf.ed.ac.uk>2015-02-10 02:13:53 +0300
commit3fc2fbe417f8ec9c9aa7f3a891d954bc88e44efd (patch)
tree0f57825e53142df09186c79f35fa536e048f2ac0 /moses
parent77b439d5bd971228d0c0756dc901630c76bd9521 (diff)
Fixed order of member initialization to avoid compiler warngins.
Diffstat (limited to 'moses')
-rw-r--r--moses/StaticData.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/moses/StaticData.cpp b/moses/StaticData.cpp
index 94d5381f5..2fad752da 100644
--- a/moses/StaticData.cpp
+++ b/moses/StaticData.cpp
@@ -60,15 +60,15 @@ bool g_mosesDebug = false;
StaticData StaticData::s_instance;
StaticData::StaticData()
- :m_sourceStartPosMattersForRecombination(false)
- ,m_inputType(SentenceInput)
- ,m_onlyDistinctNBest(false)
- ,m_needAlignmentInfo(false)
- ,m_lmEnableOOVFeature(false)
- ,m_isAlwaysCreateDirectTranslationOption(false)
- ,m_currentWeightSetting("default")
- ,m_requireSortingAfterSourceContext(false)
- ,m_treeStructure(NULL)
+ : m_sourceStartPosMattersForRecombination(false)
+ , m_requireSortingAfterSourceContext(false)
+ , m_inputType(SentenceInput)
+ , m_onlyDistinctNBest(false)
+ , m_needAlignmentInfo(false)
+ , m_lmEnableOOVFeature(false)
+ , m_isAlwaysCreateDirectTranslationOption(false)
+ , m_currentWeightSetting("default")
+ , m_treeStructure(NULL)
{
m_xmlBrackets.first="<";
m_xmlBrackets.second=">";