workaround visual c++ 6.0 bugs

This commit is contained in:
Jeff Hill
2002-11-14 22:14:29 +00:00
parent d8aa4eb679
commit 151d115378
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ epicsTimerForC::~epicsTimerForC ()
void epicsTimerForC::destroy ()
{
timerQueue & queueTmp ( this->queue );
timerQueue & queueTmp = this->queue;
this->~epicsTimerForC ();
queueTmp.timerForCFreeList.release ( this );
}

View File

@@ -47,7 +47,7 @@ timer::~timer ()
void timer::destroy ()
{
timerQueue & queueTmp ( this->queue );
timerQueue & queueTmp = this->queue;
this->~timer ();
queueTmp.timerFreeList.release ( this );
}