aboutsummaryrefslogtreecommitdiff
path: root/src/common/Debugging/Errors.h
diff options
context:
space:
mode:
authorStormBytePP <stormbyte@gmail.com>2015-09-21 15:31:49 +0200
committerStormBytePP <stormbyte@gmail.com>2015-09-21 15:31:49 +0200
commit958fd013e77f819485f7437091a2ca0a01edb7c6 (patch)
treed564b9c8cdc66f5faf0e2ee6076a8b4c682623c4 /src/common/Debugging/Errors.h
parentc1817dff37d22f99ecb7b237aa353a4550c8ada0 (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.h2
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);