aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/system/FatalError.cxx6
-rw-r--r--src/system/FatalError.hxx4
2 files changed, 0 insertions, 10 deletions
diff --git a/src/system/FatalError.cxx b/src/system/FatalError.cxx
index 1cf4ec851..c51dd7b3b 100644
--- a/src/system/FatalError.cxx
+++ b/src/system/FatalError.cxx
@@ -68,12 +68,6 @@ FatalError(const char *msg, const Error &error)
}
void
-FatalError(GError *error)
-{
- FatalError(error->message);
-}
-
-void
FatalError(const char *msg, GError *error)
{
FormatFatalError("%s: %s", msg, error->message);
diff --git a/src/system/FatalError.hxx b/src/system/FatalError.hxx
index 22f3b5f8f..2845359ef 100644
--- a/src/system/FatalError.hxx
+++ b/src/system/FatalError.hxx
@@ -47,10 +47,6 @@ FatalError(const char *msg, const Error &error);
gcc_noreturn
void
-FatalError(GError *error);
-
-gcc_noreturn
-void
FatalError(const char *msg, GError *error);
/**