summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-03-24 21:04:31 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-03-24 21:04:31 +0000
commitda42d1100832aae524c2e6b0ba738623df775a3d (patch)
treee6f6dcf5676d6f81b3ce6897d910eec5c386718f /postprocess
parent53e89ab25c0cd7df1b900a2e1048cfa402ea4353 (diff)
give this a copy ctor
Change-Id: I144679e93e61f1bc19319ebf8893529c164ae0ee
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/qa/services.cxx4
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;
};