From 0070fce2867e31bec514b3a980c1ce179869a090 Mon Sep 17 00:00:00 2001 From: Eladash Date: Mon, 18 Jan 2021 12:41:39 +0200 Subject: [PATCH] Compilation fix (#9622) --- Utilities/StrFmt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/StrFmt.h b/Utilities/StrFmt.h index f104777903..a46f676dd4 100644 --- a/Utilities/StrFmt.h +++ b/Utilities/StrFmt.h @@ -297,7 +297,7 @@ namespace fmt raw_throw_exception({line, col, file, func}, reinterpret_cast(fmt), type_list, fmt_args_t{fmt_unveil::get(args)...}); } - [[noreturn]] ~throw_exception(); + [[noreturn]] ~throw_exception() { std::abort(); } // Unreachable }; template