From b070e606f49e7823449a72bc8d3cdc5ddedd6304 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Fri, 3 May 2024 14:09:56 +0200 Subject: [PATCH] Add missing header in dispatch.h With some toolchains the lack of the cstdint header caused compilation failure. --- kleidicv/include/kleidicv/dispatch.h | 1 + 1 file changed, 1 insertion(+) diff --git a/kleidicv/include/kleidicv/dispatch.h b/kleidicv/include/kleidicv/dispatch.h index bdab7d7b7..7ff35c8ff 100644 --- a/kleidicv/include/kleidicv/dispatch.h +++ b/kleidicv/include/kleidicv/dispatch.h @@ -10,6 +10,7 @@ #if defined(KLEIDICV_HAVE_SVE2) || defined(KLEIDICV_HAVE_SME2) #include +#include #include namespace KLEIDICV_TARGET_NAMESPACE { -- GitLab