0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-01 01:28:54 +02:00

ircd::logger: Remove noreturn attribute.

This commit is contained in:
Jason Volk 2020-04-22 01:13:19 -07:00
parent 030286fed2
commit e57ae30791

View file

@ -459,9 +459,6 @@ struct ircd::log::error
struct ircd::log::critical
{
template<class... args>
#if !defined(RB_ASSERT)
[[noreturn]]
#endif
critical(const log &log, const string_view &fmt, args&&... a)
{
vlog(log, level::CRITICAL, fmt, va_rtti{std::forward<args>(a)...});
@ -473,9 +470,6 @@ struct ircd::log::critical
}
template<class... args>
#if !defined(RB_ASSERT)
[[noreturn]]
#endif
critical(const string_view &fmt, args&&... a)
{
vlog(general, level::CRITICAL, fmt, va_rtti{std::forward<args>(a)...});