Browse Source

Update pull_request_template.md

master
Thom Wiggers 5 years ago
parent
commit
764935084a
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      .github/pull_request_template.md

+ 3
- 2
.github/pull_request_template.md View File

@@ -12,6 +12,7 @@
* [ ] Output-parameter pointers in functions are on the left
* [ ] Negative return values on failure of API functions (within restrictions of FO transform).
* [ ] `const` arguments are labeled as `const`
* [ ] (optional) All integer types are of fixed size, using `stdint.h` types (including `uint8_t` instead of `unsigned char`)
* [ ] Integers used for indexing are of size `size_t`
* [ ] variable declarations at the beginning (except in `for (size_t i=...`)
* Optional:
* [ ] All integer types are of fixed size, using `stdint.h` types (including `uint8_t` instead of `unsigned char`)
* [ ] Integers used for indexing are of size `size_t`

Loading…
Cancel
Save