forked from organicmaps/organicmaps
if, for, while rules
This commit is contained in:
parent
0e45ef3c01
commit
17e064edf8
1 changed files with 26 additions and 0 deletions
|
@ -19,6 +19,7 @@ Naming and formatting
|
|||
- Underscores are allowed only in prefixes for member variables and namespace names, like int m_countriesCount; namespace utf_parser
|
||||
- Don't specify std:: and boost:: prefixes (headers in std/ folder already have 'using std::string')
|
||||
- Use right-to-left order for variables/params: string const & s (reference to the const string)
|
||||
- In one line 'if', 'for', 'while' we do not use brackets. If one line 'for' or 'while' is combined with one line 'if' do use brackets for cycle.
|
||||
|
||||
// *********** Formatting Example ***********
|
||||
#include "../std/math.hpp"
|
||||
|
@ -98,6 +99,31 @@ int Foo(int a)
|
|||
}
|
||||
|
||||
|
||||
//if, for, while formatting
|
||||
|
||||
if (condition)
|
||||
foo();
|
||||
else
|
||||
bar();
|
||||
|
||||
if (condition)
|
||||
{
|
||||
if (condition)
|
||||
foo();
|
||||
else
|
||||
bar();
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < size; ++i)
|
||||
foo(i);
|
||||
|
||||
|
||||
while(true)
|
||||
{
|
||||
if (condition)
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Tips and Hints
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue