Compilation fix (#9622)

This commit is contained in:
Eladash
2021-01-18 12:41:39 +02:00
committed by GitHub
parent a2e8e3090c
commit 0070fce286
+1 -1
View File
@@ -297,7 +297,7 @@ namespace fmt
raw_throw_exception({line, col, file, func}, reinterpret_cast<const char*>(fmt), type_list, fmt_args_t<Args...>{fmt_unveil<Args>::get(args)...});
}
[[noreturn]] ~throw_exception();
[[noreturn]] ~throw_exception() { std::abort(); } // Unreachable
};
template <typename CharT, usz N, typename... Args>