From 3d719654e769bcbc6edd4cafd6f7dd52a7275a5f Mon Sep 17 00:00:00 2001 From: Anthony Thibault Date: Fri, 29 Mar 2019 15:40:30 -0700 Subject: [PATCH] Testing header numbers --- CODING_STANDARD.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CODING_STANDARD.md b/CODING_STANDARD.md index 149b51b923..622d06c15a 100644 --- a/CODING_STANDARD.md +++ b/CODING_STANDARD.md @@ -4,25 +4,25 @@ Note that the current code base does not necessarily follow this with 100% consi Basically taken directly from [http://geosoft.no/development/cppstyle.html](http://geosoft.no/development/cppstyle.html) with some subtle changes and omissions. -## 1. Naming +## [1.] Naming -### 1.1. General Naming Conventions +### [1.1.] General Naming Conventions -#### 1.1.1. Names representing types must be in mixed case starting with upper case. +#### [1.1.1.] Names representing types must be in mixed case starting with upper case. ```cpp Coach, PenaltyBox ``` -#### 1.1.2. Private class variables must be in mixed case prefixed with an underscore. +#### [1.1.2.] Private class variables must be in mixed case prefixed with an underscore. ```cpp _puck, _team ``` -#### 1.1.3. Local variables must be in mixed case (and NOT prefixed with an underscore). +#### [1.1.3] Local variables must be in mixed case (and NOT prefixed with an underscore). ```cpp redLine, icingFrequency