From 1c447a107e121bde722b20204d292fd90ddb1a6e Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 31 Jul 2013 02:53:51 -0400 Subject: [PATCH] Give SignalType a default constructor that calls the default constructor of Type --- indra/newview/lfsimfeaturehandler.h | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/lfsimfeaturehandler.h b/indra/newview/lfsimfeaturehandler.h index f91dc1566..b105a636b 100644 --- a/indra/newview/lfsimfeaturehandler.h +++ b/indra/newview/lfsimfeaturehandler.h @@ -24,6 +24,7 @@ template class SignaledType { public: + SignaledType() : mValue() {} SignaledType(Type b) : mValue(b) {} template