From 71e3acd1c4435d23e2e0fdc8fe358278f66d88f4 Mon Sep 17 00:00:00 2001 From: ado Date: Tue, 23 Feb 2021 02:31:24 +0100 Subject: [PATCH] try fix mingw-clang ci --- include/ss/extract.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ss/extract.hpp b/include/ss/extract.hpp index 0644e10..d33a323 100644 --- a/include/ss/extract.hpp +++ b/include/ss/extract.hpp @@ -36,7 +36,7 @@ inline std::optional from_char(char c) { } // mingw32 clang does not support some of the builtin functions -#if (defined(__clang__) && (!defined(__MINGW32__) || defined(__MINGW64__))) || \ +#if (defined(__clang__) && (!defined(_WIN32) || defined(_WIN64))) || \ defined(__GNUC__) || defined(__GUNG__) //////////////// // mul overflow detection