Skip to content

Commit ee9616e

Browse files
committed
clang++ and gcc support
1 parent 29bba37 commit ee9616e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Style Guide & Coding Conventions
33
- Indentation is to be consistently four spaces, not tabs or a mixture of spaces and tabs.
44
- All files are to have a single blank line at their end, if possible.
55
- 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
67
- Prefer use of `class` to `struct` for declaring classes (this means you need to explicitly specify public inheritance).
78
- 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++)
89
- Prefer `lowercase` namespace, parameter, and local variable names.

0 commit comments

Comments
 (0)