Author: greg.ercolano
Date: 2010-12-03 09:56:19 -0800 (Fri, 03 Dec 2010)
New Revision: 575
Log:
Small simplifications.


Modified:
   trunk/cmp.php

Modified: trunk/cmp.php
===================================================================
--- trunk/cmp.php       2010-12-03 17:52:24 UTC (rev 574)
+++ trunk/cmp.php       2010-12-03 17:56:19 UTC (rev 575)
@@ -737,17 +737,18 @@
 
     int function2(int arg) {
       for (int i=0; i<arg; i++) {
-        stuff(i);
+        stuff();
       }
       while (something) {
         stuff();
       }
       switch (arg) {
         case 0:
+          stuff_here();
           break;
         case 1: {
           int var;
-          var += stuff(var);
+          stuff_here();
           break;
         }
         case 2:

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to