Remove dynamic exceptions
[anna.git] / source / statistics / Meter.cpp
index bf4c3f8..3058ebc 100644 (file)
@@ -57,7 +57,7 @@ const Meter & Meter::operator = (const Meter & meter) {
 //------------------------------------------------------------------------------
 //------------------------------------------------------------ Meter::asString()
 //------------------------------------------------------------------------------
-std::string Meter::asString(const int & numberOfDecimals) const throw() {
+std::string Meter::asString(const int & numberOfDecimals) const {
   std::string trace;
   trace =  "\n=====";
   trace += "\nMeter";
@@ -70,7 +70,7 @@ std::string Meter::asString(const int & numberOfDecimals) const throw() {
 //------------------------------------------------------------------------------
 //--------------------------------------------------------------- Meter::asXML()
 //------------------------------------------------------------------------------
-anna::xml::Node* Meter::asXML(anna::xml::Node* parent, const int & numberOfDecimals) const throw() {
+anna::xml::Node* Meter::asXML(anna::xml::Node* parent, const int & numberOfDecimals) const {
   anna::xml::Node* result = parent->createChild("anna.statistics.Meter");
   return (a_accumulator.asXML(result, numberOfDecimals));
 }