From da42d1100832aae524c2e6b0ba738623df775a3d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 24 Mar 2015 21:04:31 +0000 Subject: give this a copy ctor Change-Id: I144679e93e61f1bc19319ebf8893529c164ae0ee --- postprocess/qa/services.cxx | 4 ++++ 1 file changed, 4 insertions(+) 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; }; -- cgit