From da502b99be9dd00f6b3ca52c956f9b82554c71e7 Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Tue, 17 Oct 2006 20:48:18 +0000 Subject: [PATCH] no Log keyword any more, see also http://subversion.tigris.org/faq.html#log-in-source git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@761 7ec92016-0320-0410-acc4-a06ded1c099a --- test/Factory/Factory.cpp | 49 --------------------------- test/LockingPtr/Thread.h | 14 -------- test/Pimpl/type2.h | 1 + test/RegressionTest/FactoryParmTest.h | 18 ---------- test/RegressionTest/Test.cpp | 45 ------------------------ test/SmallObj/DefaultAlloc.cpp | 5 --- test/SmallObj/SmallObjBench.cpp | 47 ------------------------- test/SmallObj/SmallObjSingleton.cpp | 43 ----------------------- test/SmallObj/timer.h | 11 ------ test/SmartPtr/base.h | 10 ------ test/SmartPtr/strong.cpp | 25 -------------- 11 files changed, 1 insertion(+), 267 deletions(-) diff --git a/test/Factory/Factory.cpp b/test/Factory/Factory.cpp index f5bca43..18d4ce1 100644 --- a/test/Factory/Factory.cpp +++ b/test/Factory/Factory.cpp @@ -302,52 +302,3 @@ int main() return EXIT_SUCCESS; } - -// $Log$ -// Revision 1.14 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.13 2006/01/09 07:27:01 syntheticpp -// replace tabs -// -// Revision 1.12 2006/01/05 00:23:43 syntheticpp -// always use #include , Thanks to Lukas Fittl -// -// Revision 1.11 2006/01/04 23:54:28 syntheticpp -// remove system(PAUSE) for gcc, Thanks to Lukas Fittl -// -// Revision 1.10 2006/01/04 23:45:08 syntheticpp -// remove gcc 4.0 warnings, Thanks to Lukas Fittl -// -// Revision 1.9 2005/11/12 16:52:36 syntheticpp -// protect private data, add std::vector RegisteredIds() -// -// Revision 1.8 2005/11/07 12:06:43 syntheticpp -// change lifetime policy DieOrder to a msvc7.1 compilable version. Make this the default lifetime for SmallObject -// -// Revision 1.7 2005/11/05 17:43:55 syntheticpp -// disable FollowIntoDeath/DieOrder lifetime policies when using the msvc 7.1 compiler, bug article: 839821 'Microsoft has confirmed that this is a problem..' -// -// Revision 1.6 2005/11/01 11:38:19 syntheticpp -// apply new lifetime policy to avoid crash on exit in test/Factory -// -// Revision 1.5 2005/10/30 14:03:23 syntheticpp -// replace tabs space -// -// Revision 1.4 2005/10/30 13:49:44 syntheticpp -// make disabling the TYPELIST macros possible -// -// Revision 1.3 2005/10/06 17:50:14 syntheticpp -// adding template based list/sequence implementation, should replace LOKI_TYPELIST_, update some files -// -// Revision 1.2 2005/09/26 07:33:05 syntheticpp -// move macros into LOKI_ namespace -// -// Revision 1.1 2005/09/24 16:10:14 syntheticpp -// move Factory example -// -// Revision 1.1 2005/07/28 14:27:12 syntheticpp -// add Factory example -// - diff --git a/test/LockingPtr/Thread.h b/test/LockingPtr/Thread.h index 4a05d0e..87e3e0c 100644 --- a/test/LockingPtr/Thread.h +++ b/test/LockingPtr/Thread.h @@ -102,17 +102,3 @@ namespace Loki #endif -// $Log$ -// Revision 1.5 2006/06/08 19:15:27 lfittl -// - Simplify some threading code by not saving the return status -// (also fixes 2 gcc warnings) -// -// Revision 1.4 2006/01/21 14:11:59 syntheticpp -// remove gcc warnings -// -// Revision 1.3 2006/01/21 01:02:58 rich_sposato -// Moved Mutex class into Loki library. -// -// Revision 1.2 2006/01/19 19:36:09 rich_sposato -// Added functions to Mutex class. -// diff --git a/test/Pimpl/type2.h b/test/Pimpl/type2.h index 3fd856e..a7dc9ce 100644 --- a/test/Pimpl/type2.h +++ b/test/Pimpl/type2.h @@ -132,3 +132,4 @@ public: private: Pimpl > d; }; + diff --git a/test/RegressionTest/FactoryParmTest.h b/test/RegressionTest/FactoryParmTest.h index ccfe083..1986585 100644 --- a/test/RegressionTest/FactoryParmTest.h +++ b/test/RegressionTest/FactoryParmTest.h @@ -416,21 +416,3 @@ public: #endif - -// $Log$ -// Revision 1.5 2005/09/26 07:33:05 syntheticpp -// move macros into LOKI_ namespace -// -// Revision 1.4 2005/09/24 15:25:20 syntheticpp -// ove RegressionTest -// -// Revision 1.6 2005/07/31 15:06:22 syntheticpp -// invert new factory code macro logic to be ReferenceTest more compatible with noncc code -// -// Revision 1.5 2005/07/28 14:59:17 syntheticpp -// remove unreferenced parameter warning -// -// Revision 1.4 2005/07/28 14:26:10 syntheticpp -// add cvs Header/Log -// - diff --git a/test/RegressionTest/Test.cpp b/test/RegressionTest/Test.cpp index 6c42a78..7b76c9f 100644 --- a/test/RegressionTest/Test.cpp +++ b/test/RegressionTest/Test.cpp @@ -114,48 +114,3 @@ int main() * CW 6.0 ? */ - - -// $Log$ -// Revision 1.13 2006/01/04 23:54:30 syntheticpp -// remove system(PAUSE) for gcc, Thanks to Lukas Fittl -// -// Revision 1.12 2005/10/30 14:22:31 syntheticpp -// disable threading because the sdk (windows.h) is not detected automatically by the batch scripts -// -// Revision 1.11 2005/10/30 13:49:44 syntheticpp -// make disabling the TYPELIST macros possible -// -// Revision 1.10 2005/10/24 20:51:38 syntheticpp -// Table is out of date -// -// Revision 1.9 2005/10/24 20:35:12 syntheticpp -// small changes for Threads; add compile test for Threads.h -// -// Revision 1.8 2005/10/06 17:50:14 syntheticpp -// adding template based list/sequence implementation, should replace LOKI_TYPELIST_, update some files -// -// Revision 1.7 2005/09/29 08:09:17 syntheticpp -// update msvc build process -// -// Revision 1.6 2005/09/26 07:33:05 syntheticpp -// move macros into LOKI_ namespace -// -// Revision 1.5 2005/09/24 15:49:40 syntheticpp -// is it really binary? -// -// Revision 1.4 2005/09/24 15:25:20 syntheticpp -// ove RegressionTest -// -// Revision 1.17 2005/09/15 17:51:48 syntheticpp -// add new TypeTraits test from Kalle Rutanen -// -// Revision 1.16 2005/08/10 18:13:13 syntheticpp -// change default to single threading -// -// Revision 1.15 2005/07/31 14:00:48 syntheticpp -// make object level threading possible -// -// Revision 1.14 2005/07/28 14:26:10 syntheticpp -// add cvs Header/Log -// diff --git a/test/SmallObj/DefaultAlloc.cpp b/test/SmallObj/DefaultAlloc.cpp index c0a68ce..ceb7a8f 100644 --- a/test/SmallObj/DefaultAlloc.cpp +++ b/test/SmallObj/DefaultAlloc.cpp @@ -758,8 +758,3 @@ int main( unsigned int argc, const char * const argv[] ) } // ---------------------------------------------------------------------------- - -// $Log$ -// Revision 1.1 2005/10/13 00:40:38 rich_sposato -// Added program to test how compiler uses default new and delete operators. -// diff --git a/test/SmallObj/SmallObjBench.cpp b/test/SmallObj/SmallObjBench.cpp index 921cea7..9e02dfa 100644 --- a/test/SmallObj/SmallObjBench.cpp +++ b/test/SmallObj/SmallObjBench.cpp @@ -324,50 +324,3 @@ int main() // ---------------------------------------------------------------------------- -// $Log$ -// Revision 1.20 2006/01/25 18:07:40 rich_sposato -// Changed values for template parameters used to make SmallObject allocator. -// -// Revision 1.19 2006/01/19 23:11:57 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.18 2006/01/05 09:55:09 syntheticpp -// assert, include path, and virtual ~ patches by Lukas Fittl -// -// Revision 1.17 2006/01/04 23:54:30 syntheticpp -// remove system(PAUSE) for gcc, Thanks to Lukas Fittl -// -// Revision 1.16 2005/12/08 22:23:33 rich_sposato -// Added checks for whether loki's allocator is corrupted. -// -// Revision 1.15 2005/11/02 01:46:04 rich_sposato -// Added explanatory comment about why class has no new [] and delete [] -// operators. Removed other comment which is now useless. -// -// Revision 1.14 2005/10/30 14:33:33 syntheticpp -// test correct also when boost is disabled -// -// Revision 1.13 2005/10/30 14:03:23 syntheticpp -// replace tabs space -// -// Revision 1.12 2005/10/29 12:38:22 syntheticpp -// replace with new implementation -// -// Revision 1.11 2005/10/29 10:21:46 syntheticpp -// find loki include files without a correct sreach pathand some small fixes -// -// Revision 1.10 2005/10/27 19:10:32 syntheticpp -// gcc fix -// -// Revision 1.9 2005/10/26 23:30:06 syntheticpp -// make object size more flexible -// -// Revision 1.8 2005/10/26 00:41:00 rich_sposato -// Added comparison to boost::pool memory allocator. -// -// Revision 1.7 2005/10/14 18:35:06 rich_sposato -// Added cvs keywords. -// - - diff --git a/test/SmallObj/SmallObjSingleton.cpp b/test/SmallObj/SmallObjSingleton.cpp index de92838..68797d1 100644 --- a/test/SmallObj/SmallObjSingleton.cpp +++ b/test/SmallObj/SmallObjSingleton.cpp @@ -365,46 +365,3 @@ int main() // ---------------------------------------------------------------------------- -// $Log$ -// Revision 1.1 2006/01/05 21:05:19 syntheticpp -// rename Small->SmallObj -// -// Revision 1.13 2006/01/05 09:55:09 syntheticpp -// assert, include path, and virtual ~ patches by Lukas Fittl -// -// Revision 1.12 2006/01/04 23:54:30 syntheticpp -// remove system(PAUSE) for gcc, Thanks to Lukas Fittl -// -// Revision 1.11 2005/12/08 21:03:02 rich_sposato -// Changed template parameter values for SmallObject allocator. -// -// Revision 1.10 2005/11/13 13:39:15 syntheticpp -// add removed tests with NoDestroy plolicy -// -// Revision 1.9 2005/11/07 12:06:43 syntheticpp -// change lifetime policy DieOrder to a msvc7.1 compilable version. Make this the default lifetime for SmallObject -// -// Revision 1.8 2005/11/05 17:43:55 syntheticpp -// disable FollowIntoDeath/DieOrder lifetime policies when using the msvc 7.1 compiler, bug article: 839821 'Microsoft has confirmed that this is a problem..' -// -// Revision 1.7 2005/11/02 15:00:38 syntheticpp -// use new singleton lifetime policies -// -// Revision 1.6 2005/11/02 14:15:44 syntheticpp -// use new singleton lifetime policies -// -// Revision 1.5 2005/11/02 14:11:18 syntheticpp -// use new singleton lifetime policies -// -// Revision 1.4 2005/11/02 13:58:18 syntheticpp -// use new singleton lifetime policies -// -// Revision 1.3 2005/10/30 14:03:23 syntheticpp -// replace tabs space -// -// Revision 1.2 2005/10/29 10:21:46 syntheticpp -// find loki include files without a correct sreach pathand some small fixes -// -// Revision 1.1 2005/10/14 18:48:10 rich_sposato -// Adding SmallSingleton test project to CVS. -// diff --git a/test/SmallObj/timer.h b/test/SmallObj/timer.h index d4f42e6..5c0ac8f 100644 --- a/test/SmallObj/timer.h +++ b/test/SmallObj/timer.h @@ -73,14 +73,3 @@ private: #endif -// $Log$ -// Revision 1.6 2006/01/19 23:11:57 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.5 2005/10/30 14:03:23 syntheticpp -// replace tabs space -// -// Revision 1.4 2005/10/26 00:38:49 rich_sposato -// Added CVS keywords and header lines. -// diff --git a/test/SmartPtr/base.h b/test/SmartPtr/base.h index 98778e3..f5d3e59 100644 --- a/test/SmartPtr/base.h +++ b/test/SmartPtr/base.h @@ -194,13 +194,3 @@ private: // ---------------------------------------------------------------------------- -// $Log$ -// Revision 1.3 2006/05/18 05:05:21 rich_sposato -// Added QueryInterface function to MimicCOM class. -// -// Revision 1.2 2006/04/05 22:53:12 rich_sposato -// Added StrongPtr class to Loki along with tests for StrongPtr. -// -// Revision 1.1 2006/03/20 21:14:16 rich_sposato -// Adding base.h to CVS. -// diff --git a/test/SmartPtr/strong.cpp b/test/SmartPtr/strong.cpp index 522196b..2071161 100644 --- a/test/SmartPtr/strong.cpp +++ b/test/SmartPtr/strong.cpp @@ -973,28 +973,3 @@ void friend_handling2() } // ---------------------------------------------------------------------------- - -// $Log$ -// Revision 1.8 2006/10/17 10:36:08 syntheticpp -// change line ending -// -// Revision 1.7 2006/10/17 10:09:37 syntheticpp -// add test code for template friends with template template parameters -// -// Revision 1.6 2006/05/17 16:23:39 syntheticpp -// remove gcc warnings -// -// Revision 1.5 2006/04/19 01:04:25 rich_sposato -// Changed DeleteSingle and DeleteArray policy to not allow use of incomplete -// types. -// -// Revision 1.4 2006/04/18 07:29:41 lfittl -// - Various makefile improvements (better mingw support, easier to add new sources) -// - Include loki/StrongPtr.hpp, not Loki/StrongPtr.hpp (test/SmartPtr) -// -// Revision 1.3 2006/04/07 16:27:11 vizowl -// adding an XCode build project -// -// Revision 1.2 2006/04/06 18:19:58 rich_sposato -// Added CVS Log keyword. -//