util/FormatString: add "noexcept"
This commit is contained in:
parent
c2b8b818c7
commit
a30cf60422
@ -28,7 +28,7 @@
|
||||
#endif
|
||||
|
||||
AllocatedString<>
|
||||
FormatStringV(const char *fmt, va_list args)
|
||||
FormatStringV(const char *fmt, va_list args) noexcept
|
||||
{
|
||||
#ifndef WIN32
|
||||
va_list tmp;
|
||||
@ -62,7 +62,7 @@ FormatStringV(const char *fmt, va_list args)
|
||||
}
|
||||
|
||||
AllocatedString<>
|
||||
FormatString(const char *fmt, ...)
|
||||
FormatString(const char *fmt, ...) noexcept
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
|
@ -32,7 +32,7 @@ template<typename T> class AllocatedString;
|
||||
*/
|
||||
gcc_nonnull_all
|
||||
AllocatedString<char>
|
||||
FormatStringV(const char *fmt, va_list args);
|
||||
FormatStringV(const char *fmt, va_list args) noexcept;
|
||||
|
||||
/**
|
||||
* Format into a newly allocated string. The caller frees the return
|
||||
@ -40,6 +40,6 @@ FormatStringV(const char *fmt, va_list args);
|
||||
*/
|
||||
gcc_nonnull(1) gcc_printf(1,2)
|
||||
AllocatedString<char>
|
||||
FormatString(const char *fmt, ...);
|
||||
FormatString(const char *fmt, ...) noexcept;
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user