IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 4c21e541 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

Update CONTRIBUTING.md

parent af9a7756
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,9 @@ While `clang-format` does the structural formatting, we still need to agree on n
- enums should be "enum class"
- Function parameter names start with "v"
- 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
- Normal variable names in code start non-capital. To avoid confusion with these special identifiers
described above in case an identifier starts with `v`, `T`, `f`, `fg`, or `g`, this prefix may not be
followed by a capital letter. i.e. `funkyVariable` is allowed while `vLooksLikeArgument` is not.
- We use namespaces to avoid clashes and to structure code
- *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