diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 13:14:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 13:14:46 +0200 |
commit | 3d8154789bca1f5a0901859e23bf5e4b458af1ff (patch) | |
tree | 6e019e54da8ea4bd6a465b7d77b0831ac521f557 /include/drawinglayer | |
parent | 69a5e1e562f7859a1c9745d578cd936a330b9aad (diff) |
cid#1371277 Missing move assignment operator
Change-Id: Ic737733f5951d5b21660a12a7a01202bd9bc303c
Diffstat (limited to 'include/drawinglayer')
-rw-r--r-- | include/drawinglayer/attribute/sdrlightingattribute3d.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drawinglayer/attribute/sdrlightingattribute3d.hxx b/include/drawinglayer/attribute/sdrlightingattribute3d.hxx index 70e0e450b210..5fa40db3b524 100644 --- a/include/drawinglayer/attribute/sdrlightingattribute3d.hxx +++ b/include/drawinglayer/attribute/sdrlightingattribute3d.hxx @@ -58,7 +58,9 @@ namespace drawinglayer const ::std::vector< Sdr3DLightAttribute >& rLightVector); SdrLightingAttribute(); SdrLightingAttribute(const SdrLightingAttribute& rCandidate); + SdrLightingAttribute(SdrLightingAttribute&& rCandidate); SdrLightingAttribute& operator=(const SdrLightingAttribute& rCandidate); + SdrLightingAttribute& operator=(SdrLightingAttribute&& rCandidate); ~SdrLightingAttribute(); // checks if the incarnation is default constructed |