From 44d214c04034b52e098f0df595341b50cab5248e Mon Sep 17 00:00:00 2001 From: niansa Date: Wed, 5 Jul 2023 14:34:18 +0200 Subject: [PATCH] Only warn if __STDC_IEC_559__ isn't defined --- ggml-vulkan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-vulkan.cpp b/ggml-vulkan.cpp index 232109762..06c043460 100644 --- a/ggml-vulkan.cpp +++ b/ggml-vulkan.cpp @@ -16,7 +16,7 @@ #include #ifndef __STDC_IEC_559__ -#error Your C implementation is not IEC 559 compliant, which is required for proper Vulkan interop. +#warning Your C implementation is not IEC 559 compliant, which is required for proper Vulkan interop. #endif #define MULTILINE_QUOTE(...) #__VA_ARGS__