1
1

Explicitly disallow preprocessor #if

Dieser Commit ist enthalten in:
Joost Rijneveld 2019-04-09 11:17:54 +02:00
Ursprung 0d24eb1f15
Commit 4bf6810c9a
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: A4FE39CF49CBC553
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -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

Datei anzeigen

@ -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`