Remove dynamic exceptions
[anna.git] / include / anna / testing / TestClock.hpp
index 9ae98f4..4a5da6c 100644 (file)
@@ -26,7 +26,7 @@ public:
   TestClock(const char *clockName, const anna::Millisecond & timeout, TestManager *manager)
     : a_manager(manager), anna::timex::Clock(clockName, timeout) {;}
 
-  virtual bool tick() throw(anna::RuntimeException);
+  virtual bool tick() noexcept(false);
 };
 
 }