Browse Source

Explicitly disallow preprocessor #if

master
Joost Rijneveld 5 years ago
parent
commit
4bf6810c9a
No known key found for this signature in database GPG Key ID: A4FE39CF49CBC553
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .github/pull_request_template.md
  2. +1
    -1
      README.md

+ 1
- 1
.github/pull_request_template.md View File

@@ -6,7 +6,7 @@
#### Manually checked properties
<!-- These checkboxes serve for the maintainers of PQClean to verify your submission. Please do not check them yourself. -->

* [ ] `#ifdef`s only for header encapsulation
* [ ] `#if`/`#ifdef`s only for header encapsulation
* [ ] `api.h` does not include other files
* [ ] No stringification macros
* [ ] Output-parameter pointers in functions are on the left


+ 1
- 1
README.md View File

@@ -65,7 +65,7 @@ _The checking of items on this list is still being developed. Checked items shou
## Requirements on C implementations that are manually checked

* Minimalist Makefiles
* `#ifdef`s only for header encapsulation
* `#if`/`#ifdef`s only for header encapsulation
* No stringification macros
* Output-parameter pointers in functions are on the left
* `const` arguments are labeled as `const`


Loading…
Cancel
Save