Update of /cvsroot/cppunit/cppunit2/include/cpputtools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1372/include/cpputtools
Modified Files:
value.h
Log Message:
* implementation is broken on VC++ 6 (linker bug with function template) => caused commandlineoptions to crash.
Index: value.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpputtools/value.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** value.h 4 Aug 2004 07:55:43 -0000 1.7
--- value.h 15 Nov 2004 08:31:43 -0000 1.8
***************
*** 5,8 ****
--- 5,12 ----
# include <stdexcept>
+ /// @todo Implement broken on VC++ 6 because of linker bug:
+ /// => all get<xxx>() are resolved as the same function !
+
+
namespace CppUTTools {
|