dbertoni 02/04/15 22:33:58
Modified: c/src/PlatformSupport ReusableArenaAllocator.hpp
Log:
Fixed typo.
Revision Changes Path
1.13 +4 -4
xml-xalan/c/src/PlatformSupport/ReusableArenaAllocator.hpp
Index: ReusableArenaAllocator.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/PlatformSupport/ReusableArenaAllocator.hpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ReusableArenaAllocator.hpp 2 Mar 2001 19:07:33 -0000 1.12
+++ ReusableArenaAllocator.hpp 16 Apr 2002 05:33:58 -0000 1.13
@@ -115,14 +115,14 @@
bool
destroyObject(ObjectType* theObject)
{
- bool fSucess = false;
+ bool fSuccess = false;
// Check this, just in case...
if (m_lastBlockReferenced != 0 &&
m_lastBlockReferenced->ownsObject(theObject) == true)
{
m_lastBlockReferenced->destroyObject(theObject);
- fSucess = true;
+ fSuccess = true;
}
else
{
@@ -139,7 +139,7 @@
m_lastBlockReferenced->destroyObject(theObject);
- fSucess = true;
+ fSuccess = true;
break;
}
@@ -150,7 +150,7 @@
}
}
- return fSucess;
+ return fSuccess;
}
/*
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]