Update of /cvsroot/cppunit/cppunit2/include/cpputtools/configuration
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12611/include/cpputtools/configuration
Modified Files:
validator.h
Log Message:
* removed extra ';' at global declaration level (fails to compile on sun)
Index: validator.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpputtools/configuration/validator.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** validator.h 23 Feb 2005 22:49:39 -0000 1.5
--- validator.h 26 Feb 2005 11:44:16 -0000 1.6
***************
*** 73,88 ****
}
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( int, "is not an integer." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( unsigned int, "is not an integer." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( short, "is not an integer." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( unsigned short, "is not an integer." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( long, "is not an integer." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( unsigned long, "is not an integer." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( float, "is not a real number." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( double, "is not a real number." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( long double, "is not a real number." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( char, "is not a character." );
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( std::string, "is not a string." );
! //COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( wchar_t, "is not a character." );
--- 73,88 ----
}
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( int, "is not an integer." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( unsigned int, "is not an integer." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( short, "is not an integer." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( unsigned short, "is not an integer." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( long, "is not an integer." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( unsigned long, "is not an integer." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( float, "is not a real number." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( double, "is not a real number." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( long double, "is not a real number." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( char, "is not a character." )
! COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( std::string, "is not a string." )
! //COMMANDLINEOPTIONS_VALIDATOR_MESSAGE( wchar_t, "is not a character." )
|