Changes between Version 9 and Version 10 of Coding Style Guidelines
- Timestamp:
- Sep 1, 2009, 11:06:54 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Coding Style Guidelines
v9 v10 267 267 == Other Punctuation == 268 268 269 * Constructors for C++ classes should initialize all of their members using C++ constructor syn atax. Each member (and superclass) should be indented on a separate line, with the colon or comma preceding the member on that line.269 * Constructors for C++ classes should initialize all of their members using C++ constructor syntax. Each member (and superclass) should be indented on a separate line, with the colon or comma preceding the member on that line. 270 270 271 271 '''Right:'''