From 44cb044e66386d2973a5eea57e583c536ddf2780 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Sun, 25 Jun 2023 13:30:39 +0100 Subject: [PATCH] whisper : fix build with -Werror=undef (#1045) --- whisper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whisper.cpp b/whisper.cpp index 65c57f7d..74cfd7b2 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -1,5 +1,5 @@ #include "whisper.h" -#if WHISPER_USE_COREML +#ifdef WHISPER_USE_COREML #include "coreml/whisper-encoder.h" #endif