From 575953fd857a7303c854a12391542efa3b29e6e4 Mon Sep 17 00:00:00 2001 From: dbj Date: Wed, 13 Nov 2019 11:33:16 +0100 Subject: [PATCH] removed [[noreturn]] on fail_fast --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 6bf5f8ad..04aff223 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -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: ");