[Nice-commit] Nice NEWS,1.74,1.75
Brought to you by:
bonniot
|
From: Artem Gr K. <ar...@us...> - 2005-04-02 09:32:55
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2012 Modified Files: NEWS Log Message: Forced assertions (RFE 1153220) and automatic assertion message. Index: NEWS =================================================================== RCS file: /cvsroot/nice/Nice/NEWS,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** NEWS 26 Mar 2005 15:33:02 -0000 1.74 --- NEWS 2 Apr 2005 09:32:29 -0000 1.75 *************** *** 50,53 **** --- 50,61 ---- uncaught exception. * Bug fixes (negative int hex literals, ...) + * Automatic message is generated for assertions, containing + the failed expression and location of the failed assertion + (which is useful when the code was stripped from debug symbols, + or printStackTraceWithSourceInfo wasn't used). + * Forced (always checked) assertions now are available. + !assert 0==1; // fails always + ?assert 0==1; // fails if assertions enabled + assert 0==1; // fails if assertions enabled -- |