Fix bulleted list of coding standards

This commit is contained in:
Arnout Engelen
2015-12-20 20:05:42 +01:00
parent b281049ca3
commit 49842c7396

View File

@@ -26,18 +26,18 @@ Can anyone recommend a sensible set? :)
For now:
* '{'
** on a new line for function definitions
** on a new line for enums
** on the same line for conditionals/loops
** omitted when possible
* on a new line for function definitions
* on a new line for enums
* on the same line for conditionals/loops
* omitted when possible
* use tab for indentation
* use doxygen/javadoc-style comments.
* for multiline doxygen docs, add a newline after '/**'
* for multiline doxygen docs, add a newline after '/**'
* case
** classes: camelcased, start uppercase
** enums: camelcased, start uppercase
** functions: camelcased, start lowercase
** local variables: camelcased, start lowercase
* classes: camelcased, start uppercase
* enums: camelcased, start uppercase
* functions: camelcased, start lowercase
* local variables: camelcased, start lowercase
License
-------