doc/coding_standard.txt
This commit is contained in:
parent
71489dcca4
commit
d103694cf9
@ -1,4 +1,14 @@
|
|||||||
|
|
||||||
|
naming:
|
||||||
|
class names, struct names, union names, enum names: underscores
|
||||||
|
variable names: underscores
|
||||||
|
internal member variables: underscores prefixed with 'm_'
|
||||||
|
internal static member variables: underscores prefixed with 's_'
|
||||||
|
no use of underscore capital identifiers or identifiers with double underscore: '_Identifier' 'id__thing'
|
||||||
|
template parameters: Capital camel case
|
||||||
|
#define : ALL_CAP_UNDERSCORES
|
||||||
|
enum values: ALL_CAP_UNDERSCORES
|
||||||
|
|
||||||
must do's:
|
must do's:
|
||||||
general:
|
general:
|
||||||
c++17 targetted standard
|
c++17 targetted standard
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user