Replaced throw() with noexcept and removed some unneeded ';'.

This commit is contained in:
Jens Breitbart
2014-12-20 15:06:36 +01:00
parent 7674bdb40a
commit 67b633880b
4 changed files with 5 additions and 5 deletions

View File

@@ -56,7 +56,7 @@ public:
{
std::lock_guard<Mutex> lock(_mutex);
_sink_it(msg);
};
}
protected:

View File

@@ -75,7 +75,7 @@ public:
void log(const details::log_msg &msg) override
{
::syslog(syslog_prio_from_level(msg), "%s", msg.formatted.str().c_str());
};
}