summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-09-03 19:07:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-09-03 19:07:54 +0100
commite65b42831bca279d67748eaacb119e844d3d6964 (patch)
tree054a19ceb46d9dc445c92a1b77c70970d76d9599 /include
parent0047512ad973ad2d214eff6afd06c9eab856dfba (diff)
coverity#1371244 Missing move assignment operator
Change-Id: I172f8397a96e5b7d0d4639e35c591caea2a0eef4
Diffstat (limited to 'include')
-rw-r--r--include/vcl/ppdparser.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/ppdparser.hxx b/include/vcl/ppdparser.hxx
index 418f4b07c74c..34b41cfcf2c7 100644
--- a/include/vcl/ppdparser.hxx
+++ b/include/vcl/ppdparser.hxx
@@ -256,6 +256,7 @@ public:
PPDContext( const PPDParser* pParser = nullptr );
PPDContext( const PPDContext& rContext ) { operator=( rContext ); }
PPDContext& operator=( const PPDContext& rContext );
+ PPDContext& operator=( PPDContext&& rContext );
~PPDContext();
void setParser( const PPDParser* );