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>2013-03-15 20:11:15 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-03-15 20:11:15 +0400
commit2d252d2dd0c97e1d1def55b9d421db4122d762f2 (patch)
tree60fc9eb64a7fb47a8b2e736c7701f877564fc289 /moses/AlignmentInfoCollection.cpp
parent974bdd979b4b79b4eb252665fd253a0e335e371f (diff)
memory leak
Diffstat (limited to 'moses/AlignmentInfoCollection.cpp')
-rw-r--r--moses/AlignmentInfoCollection.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/moses/AlignmentInfoCollection.cpp b/moses/AlignmentInfoCollection.cpp
index 5daba9ba1..53b83d8cd 100644
--- a/moses/AlignmentInfoCollection.cpp
+++ b/moses/AlignmentInfoCollection.cpp
@@ -30,6 +30,9 @@ AlignmentInfoCollection::AlignmentInfoCollection()
m_emptyAlignmentInfo = Add(pairs);
}
+AlignmentInfoCollection::~AlignmentInfoCollection()
+{}
+
const AlignmentInfo &AlignmentInfoCollection::GetEmptyAlignmentInfo() const
{
return *m_emptyAlignmentInfo;