IAP GITLAB

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

coding conventions: removed requirement of "e" for enum class values

parent 0955fed5
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ While `clang-format` does the structural formatting, we still need to agree on n ...@@ -51,7 +51,7 @@ While `clang-format` does the structural formatting, we still need to agree on n
- Any static variable has a "g" prefix. A static member variable starts with "fg" - Any static variable has a "g" prefix. A static member variable starts with "fg"
- Class member functions start with capital letters - Class member functions start with capital letters
- 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", and start with a capital "E", enum entries start with "e" - enums should be "enum class" and start with a capital "E"
- Function parameter names start with "v" - Function parameter names start with "v"
- We use namespaces to avoid clashes and to structure code - We use namespaces to avoid clashes and to structure code
......
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