FatalError: remove unused GError overload

This commit is contained in:
Max Kellermann 2013-10-20 13:10:09 +02:00
parent c772bc45c6
commit 8118bc93a8
2 changed files with 0 additions and 10 deletions

View File

@ -67,12 +67,6 @@ FatalError(const char *msg, const Error &error)
FormatFatalError("%s: %s", msg, error.GetMessage());
}
void
FatalError(GError *error)
{
FatalError(error->message);
}
void
FatalError(const char *msg, GError *error)
{

View File

@ -45,10 +45,6 @@ gcc_noreturn
void
FatalError(const char *msg, const Error &error);
gcc_noreturn
void
FatalError(GError *error);
gcc_noreturn
void
FatalError(const char *msg, GError *error);