diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 13:16:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 13:34:46 +0200 |
commit | b9ab0dd3e5eb3c948ee9a29006637e48d5751a5e (patch) | |
tree | 7e07b3d44bffc758c920216a0fa9194b90741a32 /include/basegfx | |
parent | 3d8154789bca1f5a0901859e23bf5e4b458af1ff (diff) |
cid#1371276 Missing move assignment operator
also cid#1371234, cid#1371249, cid#1371208,
cid#1371250, cid#1371258, cid#1371266, cid#1371257,
cid#1371221
Change-Id: I18d952887b684e1999d003cec0f668789c851b52
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/tools/b2dclipstate.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/basegfx/tools/b2dclipstate.hxx b/include/basegfx/tools/b2dclipstate.hxx index bd57a120a2ef..dab598edd2a4 100644 --- a/include/basegfx/tools/b2dclipstate.hxx +++ b/include/basegfx/tools/b2dclipstate.hxx @@ -59,8 +59,10 @@ namespace basegfx B2DClipState(); ~B2DClipState(); B2DClipState( const B2DClipState& ); + B2DClipState( B2DClipState&& ); explicit B2DClipState( const B2DPolyPolygon& ); B2DClipState& operator=( const B2DClipState& ); + B2DClipState& operator=( B2DClipState&& ); /// Set clip to 'null' - nothing is visible void makeNull(); |