diff options
author | StormBytePP <stormbyte@gmail.com> | 2015-09-21 15:31:49 +0200 |
---|---|---|
committer | StormBytePP <stormbyte@gmail.com> | 2015-09-21 15:31:49 +0200 |
commit | 958fd013e77f819485f7437091a2ca0a01edb7c6 (patch) | |
tree | d564b9c8cdc66f5faf0e2ee6076a8b4c682623c4 /src/common/Debugging/Errors.h | |
parent | c1817dff37d22f99ecb7b237aa353a4550c8ada0 (diff) |
Core/Build: Add Trinity::Abort definition in header file
Diffstat (limited to 'src/common/Debugging/Errors.h')
-rw-r--r-- | src/common/Debugging/Errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/Debugging/Errors.h b/src/common/Debugging/Errors.h index 024c5981c72..edf56b29136 100644 --- a/src/common/Debugging/Errors.h +++ b/src/common/Debugging/Errors.h @@ -29,6 +29,8 @@ namespace Trinity DECLSPEC_NORETURN void Fatal(char const* file, int line, char const* function, char const* message) ATTR_NORETURN; DECLSPEC_NORETURN void Error(char const* file, int line, char const* function, char const* message) ATTR_NORETURN; + + DECLSPEC_NORETURN void Abort(char const* file, int line, char const* function) ATTR_NORETURN; void Warning(char const* file, int line, char const* function, char const* message); |