You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Style Guide & Coding Conventions
4
4
- All files are to have a single blank line at their end, if possible.
5
5
- Prefer C++11 features to C++03 features when possible, and avoid deprecated language features.
6
6
- Prefer use of `class` to `struct` for declaring classes (this means you need to explicitly specify public inheritance).
7
-
- Prefer to use file extensions .cpp and .hpp to aid in GitHub's language recognition algorithms (using .h may cause the file to be detected as C rather than C++)
7
+
- Prefer to use file extensions .cpp and .hh (using .h may cause the file to be detected as C or Objective-C rather than C++)
8
8
- Prefer `lowercase` namespace, parameter, and local variable names.
9
9
- Prefer `UpperCamelCase` for class names
10
10
- Prefer `lowerCamelCase` for member function names
0 commit comments