removed throw specifications

This commit is contained in:
Jeff Hill
2003-02-12 18:51:35 +00:00
parent fb8aa21cc8
commit 8e5aa40895
23 changed files with 177 additions and 250 deletions

View File

@@ -45,7 +45,7 @@
* between the 1st and 2nd beacons)
*/
bhe::bhe ( const epicsTime & initialTimeStamp,
unsigned initialBeaconNumber, const inetAddrID & addr ) epicsThrows (()) :
unsigned initialBeaconNumber, const inetAddrID & addr ) :
inetAddrID ( addr ), timeStamp ( initialTimeStamp ), averagePeriod ( - DBL_MAX ),
pIIU ( 0 ), lastBeaconNumber ( initialBeaconNumber )
{
@@ -218,7 +218,7 @@ void bhe::show ( unsigned /* level */ ) const
static_cast <const void *> ( this ), this->averagePeriod );
}
double bhe::period () const epicsThrows (())
double bhe::period () const
{
return this->averagePeriod;
}