From df602f5d3138de9e4224182fd1c97cae886d0d55 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 26 May 2025 20:33:06 -0400 Subject: [PATCH] fix Qt issue --- include/integer.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/integer.h b/include/integer.h index b632d4b5e..f12cf21bf 100644 --- a/include/integer.h +++ b/include/integer.h @@ -89,8 +89,13 @@ typedef unsigned int uint32_t; 64-bit integers, you should comment out USE_ISAAC64 in config.h so that the previous RNG gets used instead. Then this file will be inhibited and it won't matter what the int64_t and uint64_t lines are. */ + +#if defined(__cplusplus) +#include +#else typedef long long int int64_t; typedef unsigned long long int uint64_t; +#endif #endif /* !C99 */