mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-03 09:29:50 +00:00
Whoops: correct macro expansion.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
a1c753d63e
commit
c5b7b06e59
@ -43,7 +43,7 @@ inline bool EightBit::oddParity(uint8_t value) {
|
||||
# define LIKELY(x) __builtin_expect(!!(x), 1)
|
||||
# define UNLIKELY(x) __builtin_expect(!!(x), 0)
|
||||
|
||||
# define EIGHTBIT_PARITY(x) __builtin_parity(value)
|
||||
# define EIGHTBIT_PARITY(x) __builtin_parity(x)
|
||||
|
||||
# define UNREACHABLE __builtin_unreachable();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user