[Cppunit-cvs] cppunit ChangeLog,1.223,1.224 NEWS,1.84,1.85
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2004-11-19 20:04:45
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20231 Modified Files: ChangeLog NEWS Log Message: * include/cppunit/Message.h * include/cppunit/SourceLine.h: * src/cppunit/Message.cpp: * src/cppunit/SourceLine.cpp: provided thread-safe copy constructor on platform that do not provide thread-safe copy constructor for std::string. Index: NEWS =================================================================== RCS file: /cvsroot/cppunit/cppunit/NEWS,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** NEWS 6 Nov 2004 09:05:45 -0000 1.84 --- NEWS 19 Nov 2004 20:04:35 -0000 1.85 *************** *** 5,9 **** * Portability: ! - Support for embedded visual C++ 4 added. For this purpose, CppUnit now provides a very simple stream implementation if none is provided. This should also help porting on other platforms which have STL but --- 5,9 ---- * Portability: ! - Support for Embedded Visual C++ 4 added. For this purpose, CppUnit now provides a very simple stream implementation if none is provided. This should also help porting on other platforms which have STL but *************** *** 47,50 **** --- 47,55 ---- This was contributed by Max Quatember and Andreas Pfaffenbichler. + * Compilation: + + - MinGW: patch #1024428 contributed by astar, fixed compilation issue in + Win32DynamicLibraryManager.cpp. + * Bug Fix: *************** *** 52,55 **** --- 57,64 ---- if CppUnit is missing. + - Message/SourceLine: copy constructor have been specifically implemented + to ensure they are thread-safe even if std::string copy constructor + is not (usually on reference count based implementation). + * (Possible) Compatiblity break: Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.223 retrieving revision 1.224 diff -C2 -d -r1.223 -r1.224 *** ChangeLog 8 Nov 2004 20:12:56 -0000 1.223 --- ChangeLog 19 Nov 2004 20:04:35 -0000 1.224 *************** *** 1,2 **** --- 1,10 ---- + 2004-11-19 Baptiste Lepilleur <gai...@fr...> + + * include/cppunit/Message.h + * include/cppunit/SourceLine.h: + * src/cppunit/Message.cpp: + * src/cppunit/SourceLine.cpp: provided thread-safe copy constructor on + platform that do not provide thread-safe copy constructor for std::string. + 2004-11-08 Baptiste Lepilleur <gai...@fr...> |