IAP GITLAB

Skip to content
Snippets Groups Projects
Commit ee0e741d authored by ralfulrich's avatar ralfulrich Committed by Ralf Ulrich
Browse files

added point about type names in template definitions

parent ebefb05c
No related branches found
No related tags found
2 merge requests!234WIP: Initial example of python as script language from C++,!66Update project docs
...@@ -53,7 +53,8 @@ While `clang-format` does the structural formatting, we still need to agree on n ...@@ -53,7 +53,8 @@ While `clang-format` does the structural formatting, we still need to agree on n
- Any class getter begins with "Get", and setter with "Set". Logical getters start with "Is" or "Has". - Any class getter begins with "Get", and setter with "Set". Logical getters start with "Is" or "Has".
- enums should be "enum class" - enums should be "enum class"
- Function parameter names start with "v" - Function parameter names start with "v"
- Normal variable names in code start non-capital, and they cannot start with a "prefixed" v, f, fg, or g character - types in template definitions start with "T"
- Normal variable names in code start non-capital, and they cannot start with a "prefixed" v, T, f, fg, or g character
- We use namespaces to avoid clashes and to structure code - We use namespaces to avoid clashes and to structure code
- *Everything* is part of the corsika namespace - *Everything* is part of the corsika namespace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment