Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LEFEBVREJP email
radix
Commits
1cffaa23
Commit
1cffaa23
authored
Jan 18, 2017
by
LEFEBVREJP email
Browse files
Update CONTRIBUTING.md to using c++ highlight where applicable.
parent
7cd93df1
Pipeline
#7412
failed with stages
in 16 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CONTRIBUTING.md
View file @
1cffaa23
...
...
@@ -76,13 +76,13 @@ Template implementations should end in `.i.hh`.
## Class naming
Classes should be
**CamelCase**
.
```
```
c++
class
CommandLine
{
};
```
Class members should be prefixed with
**m**
and be
**lazyCamelCase**
.
```
```
c++
class
CommandLine
{
private:
...
...
@@ -92,7 +92,7 @@ private:
```
Class methods should be
**lazyCamelCase**
.
Class member getter methods should be the members name
**lazyCamelCase**
`int argc() const`
.
```
```
c++
class
Commandline
{
private:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment