Merge pull request #265 from himynameismartin/patch-1

Added C++ syntax highlighting
This commit is contained in:
miguelfreitas 2014-09-21 11:43:54 -03:00
commit f62eae199a

View File

@ -5,8 +5,9 @@ Please be consistent with the existing coding style.
Block style: Block style:
bool Function(char* psz, int n) ``` cpp
{ bool Function(char* psz, int n)
{
// Comment summarising what this section of code does // Comment summarising what this section of code does
for (int i = 0; i < n; i++) for (int i = 0; i < n; i++)
{ {
@ -18,7 +19,8 @@ Block style:
// Success return is usually at the end // Success return is usually at the end
return true; return true;
} }
```
- ANSI/Allman block style - ANSI/Allman block style
- 4 space indenting, no tabs - 4 space indenting, no tabs