Remove dynamic exceptions
[anna.git] / source / core / util / Component.cpp
index 6dbbd22..8fea637 100644 (file)
@@ -38,7 +38,7 @@ anna::Component::~Component() {
 }
 
 std::string anna::Component::asString() const
-throw() {
+{
   std::string result("anna::Component { Name: ");
   result += a_className;
   result += " | Reference: ";
@@ -47,7 +47,7 @@ throw() {
 }
 
 anna::xml::Node* anna::Component::asXML(anna::xml::Node* parent) const
-throw() {
+{
   anna::xml::Node* result = parent->createChild("anna.Component");
   result->createAttribute("Name", a_className);
   result->createAttribute("Reference", anna::functions::asHexString(anna_ptrnumber_cast(this)));