From ceefc01575dda0bcefcf175e50484ec5809910d2 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Sun, 11 Jan 2026 13:13:31 -0800 Subject: [PATCH] revert StrFmt.h --- Utilities/StrFmt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utilities/StrFmt.h b/Utilities/StrFmt.h index a984ebe212..6d9ea05c9e 100644 --- a/Utilities/StrFmt.h +++ b/Utilities/StrFmt.h @@ -393,8 +393,8 @@ namespace fmt raw_throw_exception(src_loc, reinterpret_cast(fmt), type_info_v, fmt_args_t{fmt_unveil::get(args)...}); } -#if defined(__FreeBSD__) - [[noreturn]] ~throw_exception(); +#if !defined(_MSC_VER) || defined(__clang__) + [[noreturn]] ~throw_exception() = default; #endif };