From a99b556b147f6baf86a50c795a8d0cb723fbb78d Mon Sep 17 00:00:00 2001 From: ts-korhonen Date: Mon, 20 Dec 2021 22:51:39 +0200 Subject: [PATCH] qt: string.h inclusion predicate was backwards --- src/qt/qt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt.c b/src/qt/qt.c index a742a962f..907660a32 100644 --- a/src/qt/qt.c +++ b/src/qt/qt.c @@ -2,7 +2,7 @@ * C functionality for Qt platform, where the C equivalent is not easily * implemented in Qt */ -#if !defined(_WIN32) && !defined(__clang__) +#if !defined(_WIN32) || !defined(__clang__) #include #endif #include