Boost logo

Boost-Commit :

From: xushiweizh_at_[hidden]
Date: 2008-05-02 09:15:04


Author: xushiwei
Date: 2008-05-02 09:15:03 EDT (Fri, 02 May 2008)
New Revision: 45021
URL: http://svn.boost.org/trac/boost/changeset/45021

Log:
t
Text files modified:
   sandbox/memory/boost/memory/gc_alloc.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: sandbox/memory/boost/memory/gc_alloc.hpp
==============================================================================
--- sandbox/memory/boost/memory/gc_alloc.hpp (original)
+++ sandbox/memory/boost/memory/gc_alloc.hpp 2008-05-02 09:15:03 EDT (Fri, 02 May 2008)
@@ -293,9 +293,9 @@
 private:
         void BOOST_MEMORY_CALL _reduceDestroyChain()
         {
- MemHeaderEx** pp = &m_destroyChain;
- while (m_destroyCount)
- {
+ MemHeaderEx** pp = &m_destroyChain;
+ while (m_destroyCount)
+ {
                         MemHeaderEx* curr = *pp;
                         if (curr->blkType == nodeFree) {
                                 *pp = curr->pPrev;
@@ -304,7 +304,7 @@
                         else {
                                 pp = &curr->pPrev;
                         }
- }
+ }
         }
 
         void BOOST_MEMORY_CALL _commitCurrentBlock()


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk