From b90a3bf15ec586ad00955b026ea882a522f8176b Mon Sep 17 00:00:00 2001 From: CoderRC <108188026+CoderRC@users.noreply.github.com> Date: Mon, 3 Apr 2023 17:13:25 -0400 Subject: [PATCH] Trying to fix error on windows compilation C2589: '(': illegal token on right side of --- ggml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.h b/ggml.h index e6cf8f36d..14d15ddf8 100644 --- a/ggml.h +++ b/ggml.h @@ -779,7 +779,7 @@ int ggml_cpu_has_vsx(void); #if defined(_WIN32) && !defined(_POSIX_THREADS) #define WIN32_LEAN_AND_MEAN -#include +#include #else #include #endif