X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fcore%2Foam%2FModule.cpp;h=f0fad25885c0bc4b60e115068e799cb08a48f598;hb=5256cb543a9d35b610df19bd227cde977186aef0;hp=742b7e0e9eacd7fa0111b90a0dc51e12a2b904f9;hpb=c5dc5c2b4cb7cfb1659e27936fac109642fa1d82;p=anna.git diff --git a/source/core/oam/Module.cpp b/source/core/oam/Module.cpp index 742b7e0..f0fad25 100644 --- a/source/core/oam/Module.cpp +++ b/source/core/oam/Module.cpp @@ -418,7 +418,7 @@ void anna::oam::Module::alarmEvent(bool activation, const int & type, va_list ar //------------------------------------------------------------------------------ //------------------------------------------------------ Module::activateAlarm() //------------------------------------------------------------------------------ -void anna::oam::Module::activateAlarm(const int & type, ...) const throw(anna::RuntimeException) { +void anna::oam::Module::activateAlarm(int type, ...) const throw(anna::RuntimeException) { // LOGMETHOD(anna::TraceMethod tttm("anna::oam::Module", "activateAlarm", ANNA_FILE_LOCATION)); // Checkings @@ -444,7 +444,7 @@ void anna::oam::Module::activateAlarm(const int & type, ...) const throw(anna::R //------------------------------------------------------------------------------ //-------------------------------------------------------- Module::cancelAlarm() //------------------------------------------------------------------------------ -void anna::oam::Module::cancelAlarm(const int & type, ...) const throw(anna::RuntimeException) { +void anna::oam::Module::cancelAlarm(int type, ...) const throw(anna::RuntimeException) { // LOGMETHOD(anna::TraceMethod tttm("anna::oam::Module", "cancelAlarm", ANNA_FILE_LOCATION)); // Checkings @@ -547,7 +547,7 @@ void anna::oam::Module::recordCounters() throw(anna::RuntimeException) { Guard csGuard(cscope, "oam::CounterScope from oam::Module::record"); - for(register int icounter = 0; icounter < CounterScope::MaxCounter; icounter ++) { + for(int icounter = 0; icounter < CounterScope::MaxCounter; icounter ++) { Counter* counter = cscope->a_counters [icounter]; if(counter == NULL)