diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-24 21:04:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-24 21:04:31 +0000 |
commit | da42d1100832aae524c2e6b0ba738623df775a3d (patch) | |
tree | e6f6dcf5676d6f81b3ce6897d910eec5c386718f /postprocess | |
parent | 53e89ab25c0cd7df1b900a2e1048cfa402ea4353 (diff) |
give this a copy ctor
Change-Id: I144679e93e61f1bc19319ebf8893529c164ae0ee
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/qa/services.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/postprocess/qa/services.cxx b/postprocess/qa/services.cxx index c6ed5dcd7b58..1183cee32169 100644 --- a/postprocess/qa/services.cxx +++ b/postprocess/qa/services.cxx @@ -146,6 +146,10 @@ void Test::test() { serviceName(theServiceName), defaultConstructor(theDefaultConstructor) {} + Constructor(Constructor const &other): + serviceName(other.serviceName), + defaultConstructor(other.defaultConstructor) + {} OUString const serviceName; bool const defaultConstructor; }; |