Compare commits
No commits in common. "086ffceb86c1d355fcbbb34dae7c410ab82f58db" and "cfc2428268d407d193f65d996a6b81ff219ec3de" have entirely different histories.
086ffceb86
...
cfc2428268
@ -10,9 +10,6 @@ Release (master)
|
||||
[![Coverage Status](http://atria-soft.com/ci/coverage/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol)
|
||||
[![Test Status](http://atria-soft.com/ci/test/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol)
|
||||
[![Warning Status](http://atria-soft.com/ci/warning/atria-soft/ewol.svg?branch=master)](http://atria-soft.com/ci/atria-soft/ewol)
|
||||
[![github release](https://img.shields.io/github/release/atria-soft/ewol.svg?logo=github)](https://github.com/atria-soft/ewol/releases/latest)
|
||||
[![github releases: all](https://img.shields.io/github/downloads/atria-soft/ewol/total.svg?logo=github&label=github)](https://github.com/atria-soft/ewol/releases)
|
||||
|
||||
|
||||
[![Build Status](http://atria-soft.com/ci/build/atria-soft/ewol.svg?branch=master&tag=Linux)](http://atria-soft.com/ci/atria-soft/ewol)
|
||||
[![Build Status](http://atria-soft.com/ci/build/atria-soft/ewol.svg?branch=master&tag=MacOs)](http://atria-soft.com/ci/atria-soft/ewol)
|
||||
|
@ -86,7 +86,7 @@ To be simple : (tab stop at the 'if' start)
|
||||
|
||||
- function:
|
||||
```{.cpp}
|
||||
void myFunction() {
|
||||
void myFunction(void) {
|
||||
actions ...;
|
||||
}
|
||||
```
|
||||
@ -95,8 +95,8 @@ To be simple : (tab stop at the 'if' start)
|
||||
```{.cpp}
|
||||
class MyClass {
|
||||
public:
|
||||
MyClass();
|
||||
~MyClass();
|
||||
MyClass(void);
|
||||
~MyClass(void);
|
||||
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 myExampleFontionName(void);
|
||||
```
|
||||
|
||||
- Variable:
|
||||
@ -226,7 +226,7 @@ for (int32_t iii=0; iii<xxx; ++iii) {
|
||||
Types {#ewol_coding_style_types}
|
||||
=====
|
||||
|
||||
The standard Type :
|
||||
Une stanndard Type :
|
||||
```{.cpp}
|
||||
bool
|
||||
int8_t / uint8_t
|
||||
|
Loading…
Reference in New Issue
Block a user