aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Thomason <leethomason@gmail.com>2023-11-21 12:39:33 -0800
committerGitHub <noreply@github.com>2023-11-21 12:39:33 -0800
commitc2d30872e20621955ca7feb9168bad996d591a19 (patch)
tree7106d10afd42845a03a8a711d480864fe6824d3d
parent800431aa6894668d3184212ddf5316e738083296 (diff)
parent6b6d1214a7169af62f9f5d1cef49dbf686232f37 (diff)
downloadtinyxml2-c2d30872e20621955ca7feb9168bad996d591a19.tar.gz
Merge pull request #963 from leethomason/dfaure-kdab-work/dfaure/Wundef
Add missing "defined"
-rwxr-xr-xtinyxml2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyxml2.cpp b/tinyxml2.cpp
index 96b102f..c5c4870 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__)