g++ requires address operator for mem func ptr

This commit is contained in:
Jeff Hill
2000-11-20 21:13:36 +00:00
parent ffe38880e9
commit 5fe64ffc92
2 changed files with 4 additions and 4 deletions

View File

@@ -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 ();

View File

@@ -677,7 +677,7 @@ void tcpiiu::disconnect ()
{
osiAutoMutex autoMutex ( this->mutex );
this->ioTable.traverse ( baseNMIU::destroy );
this->ioTable.traverse ( &baseNMIU::destroy );
}
this->cleanShutdown ();