Kaydet (Commit) da42d110 authored tarafından Caolán McNamara's avatar Caolán McNamara

give this a copy ctor

Change-Id: I144679e93e61f1bc19319ebf8893529c164ae0ee
üst 53e89ab2
......@@ -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;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment