From: István Váradi Date: Thu, 13 Aug 2020 19:16:06 +0000 (+0200) Subject: Include cstdint only when compiling C++ code X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~226^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=89d4b6e12a79c9c32a4b9780c79af0bf14792466;p=nextcloud-desktop.git Include cstdint only when compiling C++ code Signed-off-by: István Váradi --- 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)