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-11-04 21:12:58 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-11-04 21:12:58 +0300
commit9d7f62c05b9a7742175328f354cf946f2fec5711 (patch)
treef4ea37d07cbe73a75ef60287fcba9283053af49f /moses/Hypothesis.cpp
parentec1ef78d51921cdb64d0078293fe2e19b161eca2 (diff)
parent3366374d0e11e9c7db40f9b2fe31cddcf88c831e (diff)
Merge branch 'master' of http://github.com/moses-smt/mosesdecoder
Diffstat (limited to 'moses/Hypothesis.cpp')
-rw-r--r--moses/Hypothesis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/Hypothesis.cpp b/moses/Hypothesis.cpp
index c9b0123af..44124bc81 100644
--- a/moses/Hypothesis.cpp
+++ b/moses/Hypothesis.cpp
@@ -588,7 +588,7 @@ size_t Hypothesis::hash() const
bool Hypothesis::operator==(const Hypothesis& other) const
{
// coverage
- if (m_sourceCompleted != other.m_sourceCompleted) {
+ if (&m_sourceCompleted != &other.m_sourceCompleted) {
return false;
}