Skip to content

Commit

Permalink
updated conventions again
Browse files Browse the repository at this point in the history
  • Loading branch information
CheezBoiger committed Oct 2, 2016
1 parent cd90b32 commit dc46e99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CommCodeConventions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ This convention is similar to the way Javascript, Java, is written, and most C++
* Classes and C++ structs must have a Capitalized first letter in the name. No spaces in between characters, you must
capitalize the first letter to emphasize that it is a combination of multiple words. ex: SomeClassObject

* Functions and variables must begin with lower case (underscore at the beginning is ok), multiple words in the name after the first word will have underscore. Functions MUST BE CAPITALIZED!!
* Variables must begin with lower case (underscore at the beginning is ok), multiple words in the name after the first word will have underscore. Functions MUST BE CAPITALIZED!!
first letter. ex: (for function) void GetSize(int variable_a). (for variable) int some_variable_used or int _some_variable_used;

* Preprocessor defines must be all capitalized, with underscores, similar to C style.
Expand Down

0 comments on commit dc46e99

Please sign in to comment.