Hey Ben,

I noticed you had to change a bunch of instances of

if(condition1)
  if(condition2)
    {
     // commands
    }
 else
    {
      // other commands
     }


to


if(condition1)
  {
    if(condition2)
    {
     // commands
    }
   else
    {
      // other commands
     }
  }



Is the lack of extra curly braces now a warning, and therefore we
should code accordingly?

-J

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Libmesh-devel mailing list
Libmesh-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libmesh-devel

Reply via email to