From fe4dc8b2965086c7d88eab0937c0ffa432452983 Mon Sep 17 00:00:00 2001 From: Sigurd Pettersen Date: Thu, 11 Jan 2024 13:20:52 +0100 Subject: [PATCH] Added missing type --- Fwk/VizFwk/LibCore/cvfBase.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Fwk/VizFwk/LibCore/cvfBase.h b/Fwk/VizFwk/LibCore/cvfBase.h index 6b6e8bf6e6..8361c565e0 100644 --- a/Fwk/VizFwk/LibCore/cvfBase.h +++ b/Fwk/VizFwk/LibCore/cvfBase.h @@ -123,6 +123,13 @@ typedef __int64 int64; typedef int64_t int64; #endif +// 64bit unsigned integer support via the int64 type +#ifdef WIN32 +typedef unsigned __int64 uint64; +#elif defined(CVF_LINUX) || defined(CVF_IOS) || defined(CVF_OSX) || defined(CVF_ANDROID) +typedef uint64_t uint64; +#endif + } #include "cvfConfigCore.h"