mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
ircd::logger: Remove noreturn attribute.
This commit is contained in:
parent
030286fed2
commit
e57ae30791
1 changed files with 0 additions and 6 deletions
|
@ -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)...});
|
||||
|
|
Loading…
Reference in a new issue