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:
authorUlrich Germann <Ulrich.Germann@gmail.com>2015-08-08 14:57:05 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-08-08 14:57:05 +0300
commitac862945bbf856d10c561951823a2321b35dba30 (patch)
treefb8dba1518e2c3df579ca1012cd24e9c52fb416b /moses/TargetPhrase.cpp
parent21aa5af640946c0f00c717a0774d05441a4b6902 (diff)
Bug fix: endl => std::endl.
Diffstat (limited to 'moses/TargetPhrase.cpp')
-rw-r--r--moses/TargetPhrase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/TargetPhrase.cpp b/moses/TargetPhrase.cpp
index 450deeb81..9f27e1be8 100644
--- a/moses/TargetPhrase.cpp
+++ b/moses/TargetPhrase.cpp
@@ -82,14 +82,14 @@ TargetPhrase::TargetPhrase(ttasksptr& ttask, std::string out_string, const Phras
TargetPhrase::TargetPhrase(ttasksptr& ttask, const PhraseDictionary *pt)
:Phrase()
+ , m_ttask(ttask)
+ , m_ttask_flag(true)
, m_fullScore(0.0)
, m_futureScore(0.0)
, m_alignTerm(&AlignmentInfoCollection::Instance().GetEmptyAlignmentInfo())
, m_alignNonTerm(&AlignmentInfoCollection::Instance().GetEmptyAlignmentInfo())
, m_lhsTarget(NULL)
, m_ruleSource(NULL)
- , m_ttask(ttask)
- , m_ttask_flag(true)
, m_container(pt)
{
}