Fix formatting
parent
b5350899b2
commit
d18d838812
|
@ -388,16 +388,18 @@ struct CustomExtension {
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomExtension() = default;
|
CustomExtension() = default;
|
||||||
|
|
||||||
CustomExtension(const CustomExtension &other)
|
~CustomExtension() = default;
|
||||||
: name(other.name)
|
|
||||||
, mStringValue(other.mStringValue)
|
CustomExtension(const CustomExtension &other) :
|
||||||
, mDoubleValue(other.mDoubleValue)
|
name(other.name),
|
||||||
, mUint64Value(other.mUint64Value)
|
mStringValue(other.mStringValue),
|
||||||
, mInt64Value(other.mInt64Value)
|
mDoubleValue(other.mDoubleValue),
|
||||||
, mBoolValue(other.mBoolValue)
|
mUint64Value(other.mUint64Value),
|
||||||
, mValues(other.mValues)
|
mInt64Value(other.mInt64Value),
|
||||||
{
|
mBoolValue(other.mBoolValue),
|
||||||
|
mValues(other.mValues) {
|
||||||
|
// empty
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue