Fix build

This commit is contained in:
kd-11 2022-12-06 19:33:33 +03:00 committed by Megamouse
parent 0aaa40cd53
commit 98a58daf57
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ extern char **environ;
LOG_CHANNEL(sys_log, "SYS"); LOG_CHANNEL(sys_log, "SYS");
LOG_CHANNEL(q_debug, "QDEBUG"); LOG_CHANNEL(q_debug, "QDEBUG");
[[noreturn]] extern void report_fatal_error(std::string_view _text, bool is_html, bool include_help_text) [[noreturn]] extern void report_fatal_error(std::string_view _text, bool is_html = false, bool include_help_text = true)
{ {
#ifdef __linux__ #ifdef __linux__
extern void jit_announce(uptr, usz, std::string_view); extern void jit_announce(uptr, usz, std::string_view);

View File

@ -11,7 +11,7 @@
#include <Utilities/StrUtil.h> #include <Utilities/StrUtil.h>
#include <Utilities/StrFmt.h> #include <Utilities/StrFmt.h>
[[noreturn]] void report_fatal_error(std::string_view text, bool is_html = false, bool include_help_text = true); [[noreturn]] void report_fatal_error(std::string_view text, bool is_html, bool include_help_text);
// Validates that system modules are properly installed // Validates that system modules are properly installed
// Only relevant for WIN32 // Only relevant for WIN32