aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Errors.h
diff options
context:
space:
mode:
authorMachiavelli <none@none>2009-06-12 20:24:49 +0200
committerMachiavelli <none@none>2009-06-12 20:24:49 +0200
commitd48ec1752fbb02f976b1ce63567aaaafdefd9593 (patch)
treebb419adb050e670af7245c8a2b8eecfa10e78250 /src/shared/Errors.h
parentfef7cdb51b2297bba3fd64f2b80385ca2c3d8a84 (diff)
* Attempted build fix for linux
--HG-- branch : trunk
Diffstat (limited to 'src/shared/Errors.h')
-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 ); }