From 82a2639f2238ae31ce193075c6c02971473fc1dd Mon Sep 17 00:00:00 2001 From: Ulrich Germann Date: Wed, 25 Sep 2013 22:05:01 +0100 Subject: [PATCH] Formatting. Fixed order in which members are initialized. --- moses/InputPath.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/moses/InputPath.cpp b/moses/InputPath.cpp index 3a3d3381b..651d7b424 100644 --- a/moses/InputPath.cpp +++ b/moses/InputPath.cpp @@ -10,13 +10,15 @@ using namespace std; namespace Moses { -InputPath::InputPath(const Phrase &phrase, const NonTerminalSet &sourceNonTerms, const WordsRange &range, const InputPath *prevNode - ,const ScorePair *inputScore) + InputPath:: + InputPath(const Phrase &phrase, const NonTerminalSet &sourceNonTerms, + const WordsRange &range, const InputPath *prevNode, + const ScorePair *inputScore) :m_prevNode(prevNode) ,m_phrase(phrase) - ,m_sourceNonTerms(sourceNonTerms) ,m_range(range) ,m_inputScore(inputScore) + ,m_sourceNonTerms(sourceNonTerms) { //cerr << "phrase=" << phrase << " m_inputScore=" << *m_inputScore << endl;