diff options
Diffstat (limited to 'src/system/FatalError.hxx')
-rw-r--r-- | src/system/FatalError.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/system/FatalError.hxx b/src/system/FatalError.hxx index 3918e5fc1..be67aabbd 100644 --- a/src/system/FatalError.hxx +++ b/src/system/FatalError.hxx @@ -20,9 +20,12 @@ #ifndef MPD_FATAL_ERROR_HXX #define MPD_FATAL_ERROR_HXX +#include "check.h" #include "gerror.h" #include "gcc.h" +class Error; + /** * Log the specified message and abort the process. */ @@ -36,6 +39,10 @@ FormatFatalError(const char *fmt, ...); gcc_noreturn void +FatalError(const Error &error); + +gcc_noreturn +void FatalError(GError *error); gcc_noreturn |