Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CODESTYLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Foo
};
```

* public functions and members at top, protected in middle, private at bottom
* Public functions and members at top, protected in middle, private at bottom
* Notice a space between the final class member/function and the next accessor!
* Private members must be prefixed with "_m"

Expand Down Expand Up @@ -65,6 +65,7 @@ namespace Bar
}
}}
```

## Includes
* All headers should have header guards (#pragma once)

Expand Down