[Plib-cvs] plib/demos/simon/src simon.cxx,1.7,1.8
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-22 15:22:24
|
Update of /cvsroot/plib/plib/demos/simon/src In directory usw-pr-cvs1:/tmp/cvs-serv23622/plib/demos/simon/src Modified Files: simon.cxx Log Message: Changed the expression handler to handle the difference between an lvalue and an rvalue. This enabled the assignment statement code to be moved down into expression handling where it belongs. Hence multiple assignments - and assignments tucked away in weird places should now work. Index: simon.cxx =================================================================== RCS file: /cvsroot/plib/plib/demos/simon/src/simon.cxx,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- simon.cxx 15 Sep 2002 17:45:52 -0000 1.7 +++ simon.cxx 22 Sep 2002 15:22:21 -0000 1.8 @@ -193,6 +193,7 @@ ck.update () ; fprintf(stderr, "Compile Time: %fs.\n", ck.getDeltaTime () ) ; + fprintf(stderr, "-------------------------------\n" ) ; siRun () ; return 0 ; } |