mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
ircd: Minor section markings in exception.cc.
This commit is contained in:
parent
a7e4acc519
commit
86ab32e664
1 changed files with 12 additions and 0 deletions
|
@ -153,6 +153,10 @@ ircd::make_error_code(const std::error_code &ec)
|
|||
return ec;
|
||||
}
|
||||
|
||||
//
|
||||
// exception
|
||||
//
|
||||
|
||||
ssize_t
|
||||
ircd::exception::generate(const char *const &fmt,
|
||||
const va_rtti &ap)
|
||||
|
@ -177,6 +181,10 @@ noexcept
|
|||
return size;
|
||||
}
|
||||
|
||||
//
|
||||
// assertion
|
||||
//
|
||||
|
||||
ircd::assertion::assertion()
|
||||
noexcept(RB_DEBUG_LEVEL)
|
||||
:assertion
|
||||
|
@ -232,6 +240,10 @@ noexcept(RB_DEBUG_LEVEL)
|
|||
#endif
|
||||
}
|
||||
|
||||
//
|
||||
// terminate
|
||||
//
|
||||
|
||||
ircd::terminate::terminate()
|
||||
noexcept
|
||||
:terminate
|
||||
|
|
Loading…
Reference in a new issue