Changes between Version 9 and Version 10 of Coding Style Guidelines

Show
Ignore:
Timestamp:
09/01/09 11:06:54 (3 months ago)
Author:
berkeley@ptc.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding Style Guidelines

    v9 v10  
    267267== Other Punctuation == 
    268268 
    269  * Constructors for C++ classes should initialize all of their members using C++ constructor synatax. 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. 
    270270 
    271271 '''Right:'''