g++ requires address operator for mem func ptr
This commit is contained in:
@@ -221,9 +221,9 @@ cac::~cac ()
|
||||
if ( this->pUserName ) {
|
||||
delete [] this->pUserName;
|
||||
}
|
||||
this->sgTable.traverse ( CASG::destroy );
|
||||
this->beaconTable.traverse ( bhe::destroy );
|
||||
this->chanTable.traverse ( nciu::destroy );
|
||||
this->sgTable.traverse ( &CASG::destroy );
|
||||
this->beaconTable.traverse ( &bhe::destroy );
|
||||
this->chanTable.traverse ( &nciu::destroy );
|
||||
|
||||
osiSockRelease ();
|
||||
|
||||
|
||||
@@ -677,7 +677,7 @@ void tcpiiu::disconnect ()
|
||||
|
||||
{
|
||||
osiAutoMutex autoMutex ( this->mutex );
|
||||
this->ioTable.traverse ( baseNMIU::destroy );
|
||||
this->ioTable.traverse ( &baseNMIU::destroy );
|
||||
}
|
||||
|
||||
this->cleanShutdown ();
|
||||
|
||||
Reference in New Issue
Block a user