Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 30 and Version 31 of code/C++_styleguide


Ignore:
Timestamp:
May 23, 2011, 11:07:26 AM (13 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/C++_styleguide

    v30 v31  
    389389else
    390390{
    391   ...
     391    ...
    392392}
    393393}}}
     
    397397    if (condition2)
    398398        doSomething();
    399 else                    // This else corresponds to the second if!
     399else                    // WRONG! This else corresponds to the second if!
    400400    doSomethingElse();
    401401}}}