diff options
author | Max Kellermann <max@musicpd.org> | 2016-11-10 12:40:38 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-11-10 12:55:08 +0100 |
commit | 14885f25b47948ef2857ccaffbf5309bf9b51e96 (patch) | |
tree | 736248acaeba8985abac1ecd83f53efa08c367f2 /src/system | |
parent | 4e16ea0f0a03206665d73822975852ba0d544fb8 (diff) |
system/FatalError: remove the obsolete class Error overloads
Diffstat (limited to 'src/system')
-rw-r--r-- | src/system/FatalError.cxx | 13 | ||||
-rw-r--r-- | src/system/FatalError.hxx | 10 |
2 files changed, 0 insertions, 23 deletions
diff --git a/src/system/FatalError.cxx b/src/system/FatalError.cxx index 21881315f..2f79c0ce3 100644 --- a/src/system/FatalError.cxx +++ b/src/system/FatalError.cxx @@ -19,7 +19,6 @@ #include "config.h" #include "FatalError.hxx" -#include "util/Error.hxx" #include "util/Domain.hxx" #include "LogV.hxx" @@ -62,18 +61,6 @@ FormatFatalError(const char *fmt, ...) Abort(); } -void -FatalError(const Error &error) -{ - FatalError(error.GetMessage()); -} - -void -FatalError(const char *msg, const Error &error) -{ - FormatFatalError("%s: %s", msg, error.GetMessage()); -} - #ifdef WIN32 void diff --git a/src/system/FatalError.hxx b/src/system/FatalError.hxx index c37427925..631d0f141 100644 --- a/src/system/FatalError.hxx +++ b/src/system/FatalError.hxx @@ -27,8 +27,6 @@ #include <windef.h> #endif -class Error; - /** * Log the specified message and abort the process. */ @@ -40,14 +38,6 @@ gcc_noreturn void FormatFatalError(const char *fmt, ...); -gcc_noreturn -void -FatalError(const Error &error); - -gcc_noreturn -void -FatalError(const char *msg, const Error &error); - /** * Call this after a system call has failed that is not supposed to * fail. Prints the given message, the system error message (from |