diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-11-26 14:06:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 14:06:00 +0300 |
commit | ab6e370a9e6ccefba10179c0ae3ab0c15b28a45c (patch) | |
tree | c36235a3a5fa03cc71ed33c5156d21ec990f4842 /drivers | |
parent | 1b9fb5c96936a141887b827cf0dfe850d4b04707 (diff) | |
parent | a4b7de6b236d273843b97fdf47114d1823a30271 (diff) |
Merge pull request #55344 from Chaosus/repair_error_func
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/os_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index cbc870d385..67ee6ac856 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -102,7 +102,7 @@ public: class UnixTerminalLogger : public StdLogger { public: - virtual void log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify, ErrorType p_type = ERR_ERROR); + virtual void log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify = false, ErrorType p_type = ERR_ERROR) override; virtual ~UnixTerminalLogger(); }; |