Changes between Version 9 and Version 10 of Coding Style Guidelines


Ignore:
Timestamp:
Sep 1, 2009 11:06:54 AM (15 years 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:'''