restore [[noreturn]]

This commit is contained in:
qurious-pixel 2025-11-19 12:45:05 -08:00 committed by Elad
parent 107d9dc533
commit c38b8c6d12

View file

@ -392,6 +392,10 @@ namespace fmt
{ {
raw_throw_exception(src_loc, reinterpret_cast<const char*>(fmt), type_info_v<Args...>, fmt_args_t<Args...>{fmt_unveil<Args>::get(args)...}); raw_throw_exception(src_loc, reinterpret_cast<const char*>(fmt), type_info_v<Args...>, fmt_args_t<Args...>{fmt_unveil<Args>::get(args)...});
} }
#if !defined(_MSC_VER) || defined(__clang__)
[[noreturn]] ~throw_exception();
#endif
}; };
template <typename CharT, usz N, typename... Args> template <typename CharT, usz N, typename... Args>