Give SignalType a default constructor that calls the default constructor of Type
This commit is contained in:
@@ -24,6 +24,7 @@ template<typename Type>
|
||||
class SignaledType
|
||||
{
|
||||
public:
|
||||
SignaledType() : mValue() {}
|
||||
SignaledType(Type b) : mValue(b) {}
|
||||
|
||||
template<typename Slot>
|
||||
|
||||
Reference in New Issue
Block a user