From 5080faafe68e3e8b3f946d4b6830a238f7ffbfb8 Mon Sep 17 00:00:00 2001 From: David Faure Date: Sun, 17 Sep 2023 21:39:55 +0200 Subject: [PATCH] Add missing "defined", to fix building with -Werror=undef --- tinyxml2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 4b561b3d..d97fb528 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp @@ -103,7 +103,7 @@ distribution. #if defined(_WIN64) #define TIXML_FSEEK _fseeki64 #define TIXML_FTELL _ftelli64 -#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || (__CYGWIN__) +#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__CYGWIN__) #define TIXML_FSEEK fseeko #define TIXML_FTELL ftello #elif defined(__ANDROID__)