there is no svn keyword Log

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@756 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-10-17 20:05:42 +00:00
parent 73798da9f5
commit 85e43339c8
6 changed files with 3 additions and 185 deletions

View file

@ -77,16 +77,5 @@ namespace Loki
}//namespace Private }//namespace Private
}//namespace Loki } // end namespace Loki
// $Log$
// Revision 1.7 2006/03/27 16:09:57 syntheticpp
// undef all min/max macros, thx to Shen Lei
//
// Revision 1.6 2006/01/18 17:21:31 lfittl
// - Compile library with -Weffc++ and -pedantic (gcc)
// - Fix most issues raised by using -Weffc++ (initialization lists)
//
// Revision 1.5 2006/01/16 20:59:53 rich_sposato
// Added cvs keywords.
//

View file

@ -81,18 +81,5 @@ namespace Loki
} }
}// namespace Loki } // end namespace Loki
// $Log$
// Revision 1.5 2006/07/07 09:30:48 syntheticpp
// remove 64 bit warning
//
// Revision 1.4 2006/07/06 18:25:28 syntheticpp
// add writing to ostream, by Tom Browder
//
// Revision 1.3 2006/06/28 08:04:21 syntheticpp
// use standard conforming naming, SUN's compiler needs it
//
// Revision 1.2 2006/01/16 20:59:53 rich_sposato
// Added cvs keywords.
//

View file

@ -72,15 +72,3 @@ void LOKI_C_CALLING_CONVENTION_QUALIFIER Loki::Private::AtExitFn()
#endif #endif
////////////////////////////////////////////////////////////////////////////////
// Change log:
// June 20, 2001: ported by Nick Thurn to gcc 2.95.3. Kudos, Nick!!!
// January 10, 2002: Fixed bug in call to realloc - credit due to Nigel Gent and
// Eike Petersen
// May 08, 2002: Refixed bug in call to realloc
////////////////////////////////////////////////////////////////////////////////
// $Log$
// Revision 1.7 2006/01/16 20:59:53 rich_sposato
// Added cvs keywords.
//

View file

@ -1215,114 +1215,3 @@ bool SmallObjAllocator::IsCorrupt( void ) const
} // end namespace Loki } // end namespace Loki
////////////////////////////////////////////////////////////////////////////////
// Change log:
// March 20: fix exception safety issue in FixedAllocator::Allocate
// (thanks to Chris Udazvinis for pointing that out)
// June 20, 2001: ported by Nick Thurn to gcc 2.95.3. Kudos, Nick!!!
// Aug 02, 2002: Fix in VicinityFind sent by Pavel Vozenilek
// Nov 26, 2004: Re-implemented by Rich Sposato.
// Jun 22, 2005: Fix in FixedAllocator::Allocate by Chad Lehman
////////////////////////////////////////////////////////////////////////////////
// $Log$
// Revision 1.29 2006/06/28 08:04:21 syntheticpp
// use standard conforming naming, SUN's compiler needs it
//
// Revision 1.28 2006/02/14 18:20:21 rich_sposato
// Added check for memory leak inside destructor.
//
// Revision 1.27 2006/01/19 23:11:56 lfittl
// - Disabled -Weffc++ flag, fixing these warnings produces too much useless code
// - Enabled -pedantic, -Wold-style-cast and -Wundef for src/ and test/
//
// Revision 1.26 2006/01/18 17:21:31 lfittl
// - Compile library with -Weffc++ and -pedantic (gcc)
// - Fix most issues raised by using -Weffc++ (initialization lists)
//
// Revision 1.25 2006/01/09 07:27:00 syntheticpp
// replace tabs
//
// Revision 1.24 2006/01/07 03:24:10 lfittl
// Removed useless "using namespace Loki;".
//
// Revision 1.23 2006/01/05 17:21:12 syntheticpp
// add msvc8 project files
//
// Revision 1.22 2006/01/05 00:23:43 syntheticpp
// always use #include <loki/...>, Thanks to Lukas Fittl
//
// Revision 1.21 2005/12/29 01:54:24 rich_sposato
// Added function to trim excess capacity from Chunk container.
//
// Revision 1.20 2005/12/28 22:34:53 rich_sposato
// Replaced literal constants with class static data members. (for clarity)
//
// Revision 1.19 2005/12/19 08:05:46 syntheticpp
// remove warnings when NDEBUG is defined
//
// Revision 1.18 2005/12/08 22:08:20 rich_sposato
// Added functions to check for corrupted Chunks and FixedAllocators. Made
// several minor coding changes.
//
// Revision 1.17 2005/11/03 12:43:55 syntheticpp
// more doxygen documentation, modules added
//
// Revision 1.16 2005/11/02 20:01:11 syntheticpp
// more doxygen documentation, modules added
//
// Revision 1.15 2005/10/26 00:50:44 rich_sposato
// Minor changes to documentation comments.
//
// Revision 1.14 2005/10/17 18:06:13 rich_sposato
// Removed unneeded include statements. Changed lines that check for corrupt
// Chunk. Changed assertions when allocating.
//
// Revision 1.13 2005/10/17 09:44:00 syntheticpp
// remove debug code
//
// Revision 1.12 2005/10/17 08:07:23 syntheticpp
// gcc patch
//
// Revision 1.11 2005/10/15 00:41:36 rich_sposato
// Added tests for corrupt Chunk. Added cout statements for debugging - and
// these are inside a #ifdef block.
//
// Revision 1.10 2005/10/14 23:16:23 rich_sposato
// Added check for already deleted block. Made Chunk members private.
//
// Revision 1.9 2005/10/13 22:55:46 rich_sposato
// Added another condition to if statement for allocChunk_.
//
// Revision 1.7 2005/09/27 00:40:30 rich_sposato
// Moved Chunk out of FixedAllocator class so I could improve efficiency for
// SmallObjAllocator::Deallocate.
//
// Revision 1.6 2005/09/26 21:38:54 rich_sposato
// Changed include path to be direct instead of relying upon project settings.
//
// Revision 1.5 2005/09/24 15:48:29 syntheticpp
// include as loki/
//
// Revision 1.4 2005/09/09 00:25:00 rich_sposato
// Added functions to trim extra memory within allocator. Made a new_handler
// function for allocator. Added deallocator function for nothrow delete
// operator to insure nothing is leaked when constructor throws.
//
// Revision 1.3 2005/09/01 22:15:47 rich_sposato
// Changed Chunk list to double in size when adding new chunks instead of
// just incrementing by 1. Changes linear operation into amortized constant
// time operation.
//
// Revision 1.2 2005/07/31 13:51:31 syntheticpp
// replace old implementation with the ingeious from Rich Sposato
//
// Revision 1.3 2005/07/28 07:02:58 syntheticpp
// gcc -pedantic correction
//
// Revision 1.2 2005/07/20 08:44:19 syntheticpp
// move MSVC
//
// Revision 1.9 2005/07/20 00:34:15 rich_sposato
// Fixed overflow bug in calculating number of blocks per Chunk.
//

View file

@ -312,19 +312,3 @@ bool RefLinkedBase::Merge( RefLinkedBase & rhs )
} // end namespace Loki } // end namespace Loki
// ----------------------------------------------------------------------------
// $Log$
// Revision 1.4 2006/03/17 22:52:56 rich_sposato
// Fixed bugs 1452805 and 1451835. Added Merge ability for RefLink policy.
// Added more tests for SmartPtr.
//
// Revision 1.3 2006/03/01 02:08:10 rich_sposato
// Fixed bug 1440694 by adding check if rhs is previous neighbor.
//
// Revision 1.2 2006/02/25 13:07:15 syntheticpp
// gcc does not like ; when closing a namespace
//
// Revision 1.1 2006/02/25 01:52:17 rich_sposato
// Moved a monolithic base class from header file to new source file.
//

View file

@ -618,22 +618,3 @@ bool TwoRefLinks::Merge( TwoRefLinks & rhs )
} // end namespace Loki } // end namespace Loki
// ----------------------------------------------------------------------------
// $Log$
// Revision 1.4 2006/10/14 00:03:15 rich_sposato
// Added #ifdef section around lockable pointer class to insure it only gets
// built in a multi-threaded model.
// Added #ifdef sections around asserts that are expensive to test.
// Removed test lines that send info to output.
// Removed commented code.
//
// Revision 1.3 2006/04/16 13:33:36 syntheticpp
// change init order to declarartion order
//
// Revision 1.2 2006/04/15 00:46:46 rich_sposato
// Added line to remove compiler warning about unused parameter.
//
// Revision 1.1 2006/04/05 22:53:10 rich_sposato
// Added StrongPtr class to Loki along with tests for StrongPtr.
//