Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 8 and Version 9 of code/C++_styleguide


Ignore:
Timestamp:
Nov 4, 2007, 10:39:30 PM (16 years ago)
Author:
rgrieder
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/C++_styleguide

    v8 v9  
    7272private:
    7373  int numberOfTimes_;
     74};
     75}}}
     76Static variables of classes have to end with '_s':
     77{{{
     78class TestClass2 {
     79
     80protected:
     81  static float someList_s;
    7482};
    7583}}}