From 3e87f8a19145dafdb6f0a717d2e07ea41e3ee860 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Wed, 2 May 2018 03:31:05 +0100 Subject: [PATCH] Whoops: correct parity definition Signed-off-by: Adrian Conlon --- inc/EightBitCompilerDefinitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/EightBitCompilerDefinitions.h b/inc/EightBitCompilerDefinitions.h index 8a04530..7b79991 100644 --- a/inc/EightBitCompilerDefinitions.h +++ b/inc/EightBitCompilerDefinitions.h @@ -70,7 +70,7 @@ inline void EightBit::assume(int expression) { # define LIKELY(x) (x) # define UNLIKELY(x) (x) -# define PARITY(x) EightBit::oddParity(x); +# define PARITY(x) EightBit::oddParity(x) # define UNREACHABLE ASSUME(0)