summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
};