Changes between Version 30 and Version 31 of code/C++_styleguide
- Timestamp:
- May 23, 2011, 11:07:26 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/C++_styleguide
v30 v31 389 389 else 390 390 { 391 ...391 ... 392 392 } 393 393 }}} … … 397 397 if (condition2) 398 398 doSomething(); 399 else // This else corresponds to the second if!399 else // WRONG! This else corresponds to the second if! 400 400 doSomethingElse(); 401 401 }}}