From 6e364ad7740f95c4a7662871f873b9142225bd0a Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Thu, 21 Oct 2021 22:58:52 +0100 Subject: [PATCH] Fix Linux/GCC compilation issue. --- inc/EightBitCompilerDefinitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/EightBitCompilerDefinitions.h b/inc/EightBitCompilerDefinitions.h index 0282ca6..6dad7ec 100644 --- a/inc/EightBitCompilerDefinitions.h +++ b/inc/EightBitCompilerDefinitions.h @@ -44,7 +44,7 @@ inline int EightBit::countBits(uint8_t value) noexcept { inline bool EightBit::oddParity(const uint8_t value) noexcept { #ifdef __GNUG__ - return __builtin_parity(value) + return __builtin_parity(value); #else return countBits(value) % 2; #endif