X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Fobject%2Fweak-handle.cpp;h=4f5a3f17a110d2b03ea3723bc5943cd33dc2618e;hb=0b501ba800a263b97d99adf224fc42d0c2aa8b37;hp=3a8ff332c6eeee0a56762095146d7533170c3384;hpb=8a73b1bfdc359a52a3cf1b104b4e42902866705e;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/object/weak-handle.cpp b/dali/public-api/object/weak-handle.cpp index 3a8ff33..4f5a3f1 100644 --- a/dali/public-api/object/weak-handle.cpp +++ b/dali/public-api/object/weak-handle.cpp @@ -108,13 +108,13 @@ WeakHandleBase& WeakHandleBase::operator=(const WeakHandleBase& rhs) return *this; } -WeakHandleBase::WeakHandleBase(WeakHandleBase&& rhs) +WeakHandleBase::WeakHandleBase(WeakHandleBase&& rhs) noexcept : mImpl(rhs.mImpl) { rhs.mImpl = nullptr; } -WeakHandleBase& WeakHandleBase::operator=(WeakHandleBase&& rhs) +WeakHandleBase& WeakHandleBase::operator=(WeakHandleBase&& rhs) noexcept { if(this != &rhs) {