From 08b43bb6330a7dee42f26d4ead40fd97dc38080e Mon Sep 17 00:00:00 2001 From: Francisco Santos Date: Tue, 6 Dec 2016 10:31:50 +0000 Subject: [PATCH] Members not set in assignment constructor. Change-Id: Ib68aba7f7c2208e496f3b64aef0caa122236f7fb --- automated-tests/src/dali/utc-Dali-ConstraintFunction.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automated-tests/src/dali/utc-Dali-ConstraintFunction.cpp b/automated-tests/src/dali/utc-Dali-ConstraintFunction.cpp index d7ad79b..2b00329 100644 --- a/automated-tests/src/dali/utc-Dali-ConstraintFunction.cpp +++ b/automated-tests/src/dali/utc-Dali-ConstraintFunction.cpp @@ -304,6 +304,8 @@ struct CountFunctor CountFunctor& operator=( const CountFunctor& other ) { + this->mCount = other.mCount; + ++mCount; return *this; } -- 2.7.4