aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/shared/Errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Errors.h b/src/shared/Errors.h
index 325b8eeb464..2f2430b3263 100644
--- a/src/shared/Errors.h
+++ b/src/shared/Errors.h
@@ -21,7 +21,7 @@
#ifndef TRINITYCORE_ERRORS_H
#define TRINITYCORE_ERRORS_H
-#include "ace/Stack_Trace.h"
+#include <ace/Stack_Trace.h>
#define WPAssert( assertion ) { if (!(assertion)) { ACE_Stack_Trace st; fprintf( stderr, "\n%s:%i in %s ASSERTION FAILED:\n %s\n%s\n", __FILE__, __LINE__,__FUNCTION__, #assertion, st.c_str()); assert( #assertion &&0 ); } }
#define WPError( assertion, errmsg ) if( ! (assertion) ) { sLog.outError( "%\n%s:%i in %s ERROR:\n %s\n", __FILE__, __LINE__, __FUNCTION__, (char *)errmsg ); assert( false ); }