[Cppunit-cvs] cppunit2/include/opentest properties.h,1.11,1.12
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-06-24 19:45:57
|
Update of /cvsroot/cppunit/cppunit2/include/opentest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17727/include/opentest Modified Files: properties.h Log Message: removed support for 'long double'. Not much support for that type in the standard library => it would raise too much portability issue. Index: properties.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/opentest/properties.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** properties.h 27 Feb 2005 10:15:57 -0000 1.11 --- properties.h 24 Jun 2005 19:45:49 -0000 1.12 *************** *** 67,72 **** Value( double value ); - Value( long double value ); - Value( const char *value ); --- 67,70 ---- *************** *** 95,99 **** # endif ! long double asReal() const; CppTL::ConstString asString() const; --- 93,97 ---- # endif ! double asReal() const; CppTL::ConstString asString() const; *************** *** 151,155 **** StorageInt intValue_; StorageUInt uintValue_; ! long double realValue_; char *stringValue_; Properties *propertiesValue_; --- 149,153 ---- StorageInt intValue_; StorageUInt uintValue_; ! double realValue_; char *stringValue_; Properties *propertiesValue_; |