From 89d4b6e12a79c9c32a4b9780c79af0bf14792466 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20V=C3=A1radi?= Date: Thu, 13 Aug 2020 21:16:06 +0200 Subject: [PATCH] Include cstdint only when compiling C++ code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: István Váradi --- src/common/c_jhash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/c_jhash.h b/src/common/c_jhash.h index 47c9e64c7..bd5e9d754 100644 --- a/src/common/c_jhash.h +++ b/src/common/c_jhash.h @@ -24,7 +24,7 @@ #ifndef _C_JHASH_H #define _C_JHASH_H -#include +#include // NOLINT #define c_hashsize(n) ((uint8_t) 1 << (n)) #define c_hashmask(n) (xhashsize(n) - 1)