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/Obchunk.cpp | |
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/Obchunk.cpp')
-rw-r--r-- | dep/ACE_wrappers/ace/Obchunk.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/dep/ACE_wrappers/ace/Obchunk.cpp b/dep/ACE_wrappers/ace/Obchunk.cpp index 71a69d1a3e7..cd412e5d008 100644 --- a/dep/ACE_wrappers/ace/Obchunk.cpp +++ b/dep/ACE_wrappers/ace/Obchunk.cpp @@ -1,30 +1,22 @@ // $Id: Obchunk.cpp 80826 2008-03-04 14:51:23Z wotte $ - #include "ace/Obchunk.h" - #if !defined (__ACE_INLINE__) #include "ace/Obchunk.inl" #endif /* __ACE_INLINE__ */ - ACE_RCSID(ace, Obchunk, "$Id: Obchunk.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL - ACE_ALLOC_HOOK_DEFINE(ACE_Obchunk) - void ACE_Obchunk::dump (void) const { #if defined (ACE_HAS_DUMP) ACE_TRACE ("ACE_Obchunk::dump"); - ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("end_ = %x\n"), this->end_)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("cur_ = %x\n"), this->cur_)); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); #endif /* ACE_HAS_DUMP */ } - ACE_Obchunk::ACE_Obchunk (size_t size) : end_ (contents_ + size), block_ (contents_), @@ -32,6 +24,5 @@ ACE_Obchunk::ACE_Obchunk (size_t size) next_ (0) { } - ACE_END_VERSIONED_NAMESPACE_DECL |