diff options
| -rw-r--r-- | indra/llcommon/llevents.h | 2 | 
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 | 
