Satisfy linter

This commit is contained in:
John M. Schanck 2020-09-09 10:03:19 -04:00 gecommit door Kris Kwiatkowski
bovenliggende 6c4abb23ec
commit f74c1e6ad2
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen

Bestand weergeven

@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))
static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);

Bestand weergeven

@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))
static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);

Bestand weergeven

@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))
static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);