Remove dynamic exceptions
[anna.git] / source / core / oam / Counter.cpp
index 73c06eb..88b9248 100644 (file)
@@ -29,17 +29,17 @@ oam::Counter::Counter(oam::CounterScope& scope, const int id, const char* name)
 }
 
 int oam::Counter::getReference() const
-throw() {
+{
   return (a_scope.getId() * CounterScope::MaxCounter) + a_id;
 }
 
 void oam::Counter::debug() const
-throw() {
+{
   Logger::write(Logger::Information, functions::asString("%s| Counter%08d | %u | %s", TEST_COUNTER_TAG, getReference(), a_value, a_name.c_str()), ANNA_FILE_LOCATION);
 }
 
 string oam::Counter::asString() const
-throw() {
+{
   string result("oam::Counter { Id: ");
   result += functions::asString("%08d", getReference());
   result += " | Name: ";