Remove dynamic exceptions
[anna.git] / include / anna / comm / handler / Allocator.hpp
index eb8cf74..69250b8 100644 (file)
@@ -22,10 +22,10 @@ public:
   static Communicator* st_communicator;
 
   static _Handler* create()
-  throw() {
+  {
     return new _Handler(st_communicator);
   }
-  static void destroy(_Handler* t) throw() { delete t; }
+  static void destroy(_Handler* t) { delete t; }
 };
 
 }