system/FatalError: remove the obsolete class Error overloads
This commit is contained in:
parent
4e16ea0f0a
commit
14885f25b4
@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "FatalError.hxx"
|
#include "FatalError.hxx"
|
||||||
#include "util/Error.hxx"
|
|
||||||
#include "util/Domain.hxx"
|
#include "util/Domain.hxx"
|
||||||
#include "LogV.hxx"
|
#include "LogV.hxx"
|
||||||
|
|
||||||
@ -62,18 +61,6 @@ FormatFatalError(const char *fmt, ...)
|
|||||||
Abort();
|
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
|
#ifdef WIN32
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -27,8 +27,6 @@
|
|||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class Error;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Log the specified message and abort the process.
|
* Log the specified message and abort the process.
|
||||||
*/
|
*/
|
||||||
@ -40,14 +38,6 @@ gcc_noreturn
|
|||||||
void
|
void
|
||||||
FormatFatalError(const char *fmt, ...);
|
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
|
* Call this after a system call has failed that is not supposed to
|
||||||
* fail. Prints the given message, the system error message (from
|
* fail. Prints the given message, the system error message (from
|
||||||
|
Loading…
Reference in New Issue
Block a user