clang-cl: fix a bunch of warnings

This commit is contained in:
Megamouse 2025-07-01 20:54:35 +02:00
parent a5c4951914
commit 2bb2c748bd
8 changed files with 43 additions and 19 deletions

View file

@ -393,7 +393,7 @@ 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)...});
}
#ifndef _MSC_VER
#if !defined(_MSC_VER) || defined(__clang__)
[[noreturn]] ~throw_exception();
#endif
};