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:
authorMosesAdmin <moses-support-owner@mit.edu>2015-10-20 22:16:07 +0300
committerMosesAdmin <moses-support-owner@mit.edu>2015-10-20 22:16:07 +0300
commit9643043cb793530d0dc285eb3b355bf06e116c71 (patch)
tree1ef520414671f02cd1ae60c6ea32d2b0690b6a96 /moses/Hypothesis.cpp
parentc47f24c539456259a194412d7383c9ee5861f538 (diff)
daily automatic beautifier
Diffstat (limited to 'moses/Hypothesis.cpp')
-rw-r--r--moses/Hypothesis.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/Hypothesis.cpp b/moses/Hypothesis.cpp
index fcf652b74..1a20cd79f 100644
--- a/moses/Hypothesis.cpp
+++ b/moses/Hypothesis.cpp
@@ -111,7 +111,7 @@ Hypothesis::
if (m_arcList) {
ArcList::iterator iter;
for (iter = m_arcList->begin() ; iter != m_arcList->end() ; ++iter) {
- delete *iter;
+ delete *iter;
}
m_arcList->clear();
@@ -301,7 +301,7 @@ CleanupArcList()
// delete bad ones
ArcList::iterator iter;
for (iter = m_arcList->begin() + nBestSize; iter != m_arcList->end() ; ++iter)
- delete *iter;
+ delete *iter;
m_arcList->erase(m_arcList->begin() + nBestSize, m_arcList->end());
}