Codechange: replace error/usererror printf variant with fmt variant and rename

This commit is contained in:
Rubidium
2023-04-19 22:47:36 +02:00
committed by rubidium42
parent 43c65a3fec
commit f74e26ca7e
39 changed files with 176 additions and 131 deletions

View File

@@ -15,7 +15,7 @@
*/
class CrashLog {
private:
/** Error message coming from #error(const char *, ...). */
/** Error message coming from #FatalError(format, ...). */
static std::string message;
protected:
/**
@@ -114,7 +114,7 @@ public:
*/
static void InitThread();
static void SetErrorMessage(const char *message);
static void SetErrorMessage(const std::string &message);
static void AfterCrashLogCleanup();
};