diff options
author | pacien | 2017-12-02 01:18:26 +0100 |
---|---|---|
committer | pacien | 2017-12-02 01:20:04 +0100 |
commit | 35e73f868b5f358d16d3e2b4845fe318545416b1 (patch) | |
tree | 34b2b9be76b015f5cd55ff42cde6f4a0f43dc7ba /doc/topics | |
parent | fbe226b2a8212d80c49e4ac54a05ecd60b37d722 (diff) | |
download | morpher-35e73f868b5f358d16d3e2b4845fe318545416b1.tar.gz |
Update doc topics
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'doc/topics')
-rw-r--r-- | doc/topics/build.txt (renamed from doc/topics/Build.txt) | 0 | ||||
-rw-r--r-- | doc/topics/code-style.txt | 7 |
2 files changed, 2 insertions, 5 deletions
diff --git a/doc/topics/Build.txt b/doc/topics/build.txt index c461434..c461434 100644 --- a/doc/topics/Build.txt +++ b/doc/topics/build.txt | |||
diff --git a/doc/topics/code-style.txt b/doc/topics/code-style.txt index 45318ab..25b3b3e 100644 --- a/doc/topics/code-style.txt +++ b/doc/topics/code-style.txt | |||
@@ -27,8 +27,5 @@ About: Code structure | |||
27 | - It is advised to declare variables on the stack instead of the heap when possible. | 27 | - It is advised to declare variables on the stack instead of the heap when possible. |
28 | - The use of `assert` is encouraged. | 28 | - The use of `assert` is encouraged. |
29 | - The use of `static` functions is encouraged. Such members must be declared prior to others. | 29 | - The use of `static` functions is encouraged. Such members must be declared prior to others. |
30 | 30 | - Imports should be thematically sorted, with the current spec file listed first, followed by external imports, | |
31 | 31 | then internal imports | |
32 | About: Unit tests | ||
33 | |||
34 | - Unit test files have the `.test.c` extension. | ||