We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29bba37 commit ee9616eCopy full SHA for ee9616e
src/README.md
@@ -3,6 +3,7 @@ Style Guide & Coding Conventions
3
- Indentation is to be consistently four spaces, not tabs or a mixture of spaces and tabs.
4
- All files are to have a single blank line at their end, if possible.
5
- Prefer C++11 features to C++03 features when possible, and avoid deprecated language features.
6
+- When using C++11 features, try to use those which are supported by at least both clang++ and gcc
7
- Prefer use of `class` to `struct` for declaring classes (this means you need to explicitly specify public inheritance).
8
- Prefer to use file extensions .cpp and .hpp (using .h may cause the file to be detected as C or Objective-C rather than C++)
9
- Prefer `lowercase` namespace, parameter, and local variable names.
0 commit comments