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>2014-04-30 23:47:58 +0400
committerHieu Hoang <hieu@hoang.co.uk>2014-04-30 23:47:58 +0400
commit1465cf94b7af831a56229fc00481b3bc54803857 (patch)
tree29eb5130f129086c4e526f3a9c5b991fcacc09da /moses/InputPath.cpp
parent26abab8e5c58d6e30e31fc47cf7fc971af1b692c (diff)
debugging info
Diffstat (limited to 'moses/InputPath.cpp')
-rw-r--r--moses/InputPath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/InputPath.cpp b/moses/InputPath.cpp
index 6ddbbef14..f00f1a7a4 100644
--- a/moses/InputPath.cpp
+++ b/moses/InputPath.cpp
@@ -84,7 +84,7 @@ size_t InputPath::GetTotalRuleSize() const
{
size_t ret = 0;
std::map<const PhraseDictionary*, std::pair<const TargetPhraseCollection*, const void*> >::const_iterator iter;
- for (iter = obj.m_targetPhrases.begin(); iter != obj.m_targetPhrases.end(); ++iter) {
+ for (iter = m_targetPhrases.begin(); iter != m_targetPhrases.end(); ++iter) {
const PhraseDictionary *pt = iter->first;
const TargetPhraseCollection *tpColl = iter->second.first;