fix "warning: base class `class IMessageSubscriber' should
be explicitly initialized in the copy constructor"
This commit is contained in:
@@ -126,7 +126,8 @@ Actor::~Actor()
|
||||
UnsubcribeAndClearCommands();
|
||||
}
|
||||
|
||||
Actor::Actor( const Actor &cpy )
|
||||
Actor::Actor( const Actor &cpy ):
|
||||
IMessageSubscriber( cpy )
|
||||
{
|
||||
/* Don't copy an Actor in the middle of rendering. */
|
||||
ASSERT( cpy.m_pTempState == NULL );
|
||||
|
||||
Reference in New Issue
Block a user