[Compbench-devel] CompBenchmarks++/UI UI.cpp,1.5,1.6
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-01-10 20:28:54
|
Update of /cvsroot/compbench/CompBenchmarks++/UI In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv26437 Modified Files: UI.cpp Log Message: UO_fatal evaluated before throwing exit(); Index: UI.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/UI/UI.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** UI.cpp 28 Dec 2006 13:15:48 -0000 1.5 --- UI.cpp 10 Jan 2007 20:28:48 -0000 1.6 *************** *** 17,22 **** { std::cerr << "FATAL ERROR: " << msg << std::endl; ! cbmSystem->done(); ! exit(1); return(1); } --- 17,24 ---- { std::cerr << "FATAL ERROR: " << msg << std::endl; ! if (UO_fatal) { ! cbmSystem->done(); ! exit(1); ! } return(1); } |