diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-08-28 16:45:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-08-28 16:45:32 +0200 |
commit | 3ba67ff4b110635bae9552d1d895443a9df5e3e2 (patch) | |
tree | 3a49c1a654050ca6e9a423d4d5036c6bd7762f69 /drawinglayer/source/animation | |
parent | 7d0d1b198e8f87b9a59a584abf71800874f6a431 (diff) |
-Werror=redundant-move
Change-Id: I8e239d95e288cba4fd798ce04cfe56cb62fff6a9
Diffstat (limited to 'drawinglayer/source/animation')
-rw-r--r-- | drawinglayer/source/animation/animationtiming.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/animation/animationtiming.cxx b/drawinglayer/source/animation/animationtiming.cxx index db629aa8d31f..4bcc3ffa5f5b 100644 --- a/drawinglayer/source/animation/animationtiming.cxx +++ b/drawinglayer/source/animation/animationtiming.cxx @@ -190,7 +190,7 @@ namespace drawinglayer pNew->append(*i); } - return std::move(pNew); + return pNew; } bool AnimationEntryList::operator==(const AnimationEntry& rCandidate) const @@ -283,7 +283,7 @@ namespace drawinglayer pNew->append(*i); } - return std::move(pNew); + return pNew; } bool AnimationEntryLoop::operator==(const AnimationEntry& rCandidate) const |