Log: add "noexcept"

This commit is contained in:
Max Kellermann
2017-05-16 07:00:53 +02:00
parent 0a3a5a7c65
commit 377a2860cc
6 changed files with 61 additions and 57 deletions

View File

@@ -24,15 +24,15 @@
#include "LogLevel.hxx"
void
SetLogThreshold(LogLevel _threshold);
SetLogThreshold(LogLevel _threshold) noexcept;
void
EnableLogTimestamp();
EnableLogTimestamp() noexcept;
void
LogInitSysLog();
LogInitSysLog() noexcept;
void
LogFinishSysLog();
LogFinishSysLog() noexcept;
#endif /* LOG_H */