We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e852e5 + be0e070 commit c969096Copy full SHA for c969096
doc/coding.md
@@ -12,20 +12,6 @@ gradually.
12
- No indentation for public/protected/private or for namespaces.
13
- No extra spaces inside parenthesis; don't do ( this )
14
- No space after function names; one space after if, for and while.
15
-- Includes need to be ordered alphabetically, separate own and foreign headers with a new-line (example key.cpp):
16
-```c++
17
-#include "key.h"
18
-
19
-#include "crypto/sha2.h"
20
-#include "util.h"
21
22
-#include <openssl/foo.h>
23
-```
24
-- Class or struct keywords in header files need to be ordered alphabetically:
25
26
-class CAlpha;
27
-class CBeta;
28
29
30
Block style example:
31
```c++
0 commit comments