summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskolb <none@none>2009-12-03 09:43:50 -0800
committerskolb <none@none>2009-12-03 09:43:50 -0800
commit1de537d1bd0532269960490e859259ebe9391834 (patch)
tree18f3955b25870a7f5dd44a62ce7cf12e37dbbbdb
parent7851819c88e8049c1c3d07d279d479c53d5de777 (diff)
Fixed broken build
-rw-r--r--indra/llcommon/llevents.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llevents.h b/indra/llcommon/llevents.h
index 5646407f6a..ed714e4e40 100644
--- a/indra/llcommon/llevents.h
+++ b/indra/llcommon/llevents.h
@@ -702,12 +702,14 @@ public:
mConnection(new LLBoundListener)
{
}
+
/// Copy constructor. Copy shared_ptrs to original instance data.
LLListenerWrapperBase(const LLListenerWrapperBase& that):
mName(that.mName),
mConnection(that.mConnection)
{
}
+ virtual ~LLListenerWrapperBase() {}
/// Ask LLEventPump::listen() for the listener name
virtual void accept_name(const std::string& name) const