removed [[noreturn]] on fail_fast

This commit is contained in:
dbj 2019-11-13 11:33:16 +01:00 committed by GitHub
parent e080c467ea
commit 575953fd85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@
FMT_BEGIN_NAMESPACE
//
[[noreturn]] inline void fail_fast(const char msg_[BUFSIZ]) {
inline void fail_fast(const char msg_[BUFSIZ]) {
::puts("\n\n\nFast exit on {fmt} error with message: ");
::puts(msg_);
::perror("\nPOSIX error message: ");