From a8a6f561e5df8f9dfcb2438ffa6f82900a6b67b5 Mon Sep 17 00:00:00 2001 From: Berke Ard Date: Thu, 3 Jul 2025 16:19:35 +0300 Subject: [PATCH] Fix: Add missing cstdint include for uint32_t definition - Resolves compilation error where uint32_t was undefined - Adds required header for fixed-width integer types --- include/ann_exception.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ann_exception.h b/include/ann_exception.h index 6b81373c1..83edbf8f7 100644 --- a/include/ann_exception.h +++ b/include/ann_exception.h @@ -5,6 +5,7 @@ #include #include #include +#include #include "windows_customizations.h" #ifndef _WINDOWS