diff options
author | maximius <none@none> | 2009-10-17 15:35:07 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-17 15:35:07 -0700 |
commit | 26b5e033ffde3d161382fc9addbfa99738379641 (patch) | |
tree | a344f369ca32945f787a02dee35c3dbe342bed7e /dep/ACE_wrappers/ace/Assert.h | |
parent | f21f47005dcb6b76e1abc9f35fbcd03eed191bff (diff) |
*Massive cleanup (\n\n -> \n, *\n -> \n, cleanup for(...) to for (...), and some other cleanups by hand)
*Fix a possible crash in Spell::DoAllEffectOnTarget
--HG--
branch : trunk
Diffstat (limited to 'dep/ACE_wrappers/ace/Assert.h')
-rw-r--r-- | dep/ACE_wrappers/ace/Assert.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/dep/ACE_wrappers/ace/Assert.h b/dep/ACE_wrappers/ace/Assert.h index 5bdf56f0531..f3bf9f3c335 100644 --- a/dep/ACE_wrappers/ace/Assert.h +++ b/dep/ACE_wrappers/ace/Assert.h @@ -1,5 +1,4 @@ // -*- C++ -*- - //============================================================================= /** * @file Assert.h @@ -9,20 +8,14 @@ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - #ifndef ACE_ASSERT_H #define ACE_ASSERT_H - #include /**/ "ace/pre.h" - #include /**/ "ace/ACE_export.h" - #include /**/ "ace/config-all.h" - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Export void __ace_assert(const char *file, int line, const ACE_TCHAR *expression); ACE_END_VERSIONED_NAMESPACE_DECL - #if defined (ACE_NDEBUG) #define ACE_ASSERT(x) \ (static_cast<void>(0)) @@ -32,8 +25,6 @@ ACE_END_VERSIONED_NAMESPACE_DECL ? static_cast<void>(0) \ : ACE_VERSIONED_NAMESPACE_NAME::__ace_assert(__FILE__, __LINE__, ACE_TEXT_CHAR_TO_TCHAR (#X))) #endif /* ACE_NDEBUG */ - #include /**/ "ace/post.h" - #endif /* ACE_ASSERT */ |