File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ tool to clean up patches automatically before submission.
28
28
required when doing so would need changes to significant pieces of existing
29
29
code.
30
30
- Variable and namespace names are all lowercase, and may use ` _ ` to
31
- separate words.
31
+ separate words (snake_case) .
32
32
- Class member variables have a ` m_ ` prefix.
33
33
- Global variables have a ` g_ ` prefix.
34
34
- Constant names are all uppercase, and use ` _ ` to separate words.
35
- - Class names, function names and method names are CamelCase. Do not prefix
36
- class names with ` C ` .
35
+ - Class names, function names and method names are UpperCamelCase
36
+ (PascalCase). Do not prefix class names with ` C ` .
37
37
38
38
- ** Miscellaneous**
39
39
- ` ++i ` is preferred over ` i++ ` .
You can’t perform that action at this time.
0 commit comments