Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 407 Bytes

style_guide.md

File metadata and controls

25 lines (18 loc) · 407 Bytes

Naming

Functions

Leading uppercase and uppercase for each new word. Examples MyFunction() CamelCase()

Variables

All lower case with underscores between words

Files

Use snake-case, with the name of the contained class if there is one.

Directories

Use snake-case, no spaces!

Indentation

tabs

Use of casting

Avoid C casting

static_cast<to_type>(from_var) reinterpret_cast<>()