remove (void)
This commit is contained in:
parent
cfc2428268
commit
c34d11703d
@ -86,7 +86,7 @@ To be simple : (tab stop at the 'if' start)
|
||||
|
||||
- function:
|
||||
```{.cpp}
|
||||
void myFunction(void) {
|
||||
void myFunction() {
|
||||
actions ...;
|
||||
}
|
||||
```
|
||||
@ -95,8 +95,8 @@ To be simple : (tab stop at the 'if' start)
|
||||
```{.cpp}
|
||||
class MyClass {
|
||||
public:
|
||||
MyClass(void);
|
||||
~MyClass(void);
|
||||
MyClass();
|
||||
~MyClass();
|
||||
private:
|
||||
const char* getName(void);
|
||||
};
|
||||
@ -173,7 +173,7 @@ Naming {#ewol_coding_style_naming}
|
||||
- Fonction/Methods:
|
||||
Camel case with first letter in lower case.
|
||||
```{.cpp}
|
||||
void myExampleFontionName(void);
|
||||
void myExampleFontionName();
|
||||
```
|
||||
|
||||
- Variable:
|
||||
@ -226,7 +226,7 @@ for (int32_t iii=0; iii<xxx; ++iii) {
|
||||
Types {#ewol_coding_style_types}
|
||||
=====
|
||||
|
||||
Une stanndard Type :
|
||||
The standard Type :
|
||||
```{.cpp}
|
||||
bool
|
||||
int8_t / uint8_t
|
||||
|
Loading…
Reference in New Issue
Block a user