Remove dynamic exceptions
[anna.git] / source / core / tracing / TraceLogger.cpp
index b573953..30dfdb9 100644 (file)
 using namespace anna;
 
 void TraceLogger::initialize(const char* ident)
-throw() {
+{
   openlog(ident, LOG_PID | LOG_CONS | LOG_ODELAY | LOG_NOWAIT, LOG_LOCAL0);
 }
 
 void TraceLogger::do_write(int level, const char* message, ...)
-throw() {
+{
   va_list ap;
   int size;
   int nbytes;