Changes between Version 8 and Version 9 of code/C++_styleguide
- Timestamp:
- Nov 4, 2007, 10:39:30 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/C++_styleguide
v8 v9 72 72 private: 73 73 int numberOfTimes_; 74 }; 75 }}} 76 Static variables of classes have to end with '_s': 77 {{{ 78 class TestClass2 { 79 80 protected: 81 static float someList_s; 74 82 }; 75 83 }}}