From 764935084a48dc5ffb03f7dd7e6c48ef595411ae Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Fri, 5 Apr 2019 16:19:29 +0200 Subject: [PATCH] Update pull_request_template.md --- .github/pull_request_template.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c828dc66..1f6a93c6 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -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`