From f70582ef8756ca65d9c4df686c56c659d414cdce Mon Sep 17 00:00:00 2001 From: obligaron Date: Mon, 10 May 2021 00:04:22 +0200 Subject: [PATCH] log.hpp: Fix app_fatal local definition --- Source/utils/log.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/utils/log.hpp b/Source/utils/log.hpp index 3bcab1d08..f904bad4d 100644 --- a/Source/utils/log.hpp +++ b/Source/utils/log.hpp @@ -11,7 +11,7 @@ namespace devilution { // Local definition to fix compilation issue due to header conflict. -void app_fatal(const char *pszFmt, ...); +[[noreturn]] void app_fatal(const char *pszFmt, ...); enum class LogCategory { Application = SDL_LOG_CATEGORY_APPLICATION,