diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-12-07 12:32:43 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-12-07 22:48:12 +0100 |
commit | 6896184167ad084fad298ababff7e6d026d0b929 (patch) | |
tree | 2bfbb7ca0754e90712725a4d9b6906abe62c9cc3 /drawinglayer | |
parent | 66ef8ca217680095d8aaae025d82c2cbcd8ec1d2 (diff) |
HAVE_CXX_CWG1579_FIX is always true now
...(according to
<http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1579> it is fixed
in C++14), but for safety, leave the configure.ac check in for some longer.
Change-Id: Ibd2f0cac228117e35ac299e2fe74207394c900cd
Reviewed-on: https://gerrit.libreoffice.org/64773
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/animation/animationtiming.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drawinglayer/source/animation/animationtiming.cxx b/drawinglayer/source/animation/animationtiming.cxx index 374def8aed6e..f3ffa88b35c8 100644 --- a/drawinglayer/source/animation/animationtiming.cxx +++ b/drawinglayer/source/animation/animationtiming.cxx @@ -19,7 +19,6 @@ #include <memory> -#include <config_global.h> #include <drawinglayer/animation/animationtiming.hxx> #include <basegfx/numeric/ftools.hxx> #include <o3tl/make_unique.hxx> @@ -192,11 +191,7 @@ namespace drawinglayer pNew->append(*i); } -#if HAVE_CXX_CWG1579_FIX return pNew; -#else - return std::move(pNew); -#endif } bool AnimationEntryList::operator==(const AnimationEntry& rCandidate) const @@ -289,11 +284,7 @@ namespace drawinglayer pNew->append(*i); } -#if HAVE_CXX_CWG1579_FIX return pNew; -#else - return std::move(pNew); -#endif } bool AnimationEntryLoop::operator==(const AnimationEntry& rCandidate) const |