fixed sunpro warning
This commit is contained in:
@@ -64,7 +64,7 @@ void beaconAnomalyGovernor::start ()
|
||||
}
|
||||
}
|
||||
|
||||
epicsTimerNotify::expireStatus beaconAnomalyGovernor::expire ( const epicsTime & currentTime )
|
||||
epicsTimerNotify::expireStatus beaconAnomalyGovernor::expire ( const epicsTime & )
|
||||
{
|
||||
if ( this->anomalyPending ) {
|
||||
this->anomalyPending = false;
|
||||
|
||||
@@ -48,10 +48,10 @@ bool gddEnumStringTable::expand ( unsigned nStringsRequired )
|
||||
}
|
||||
}
|
||||
|
||||
void gddEnumStringTable::reserve ( unsigned nStrings )
|
||||
void gddEnumStringTable::reserve ( unsigned nStringsIn )
|
||||
{
|
||||
if ( nStrings > this->nStringSlots ) {
|
||||
this->expand ( nStrings );
|
||||
if ( nStringsIn > this->nStringSlots ) {
|
||||
this->expand ( nStringsIn );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user