Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leethomason/tinyxml2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2020-10-09 10:59:50 +0300
committerDavid Faure <faure@kde.org>2020-10-09 10:59:50 +0300
commitb5d3b93e0553fc63960e773160a594944f38170c (patch)
tree34e9a5776851a2a00b9f9188e146c3dd2f1525aa
parent1aeb57d26bc303d5cfa1a9ff2a331df7ba278656 (diff)
Add missing `defined`, detected by -Werror=undef
-rwxr-xr-xtinyxml2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyxml2.cpp b/tinyxml2.cpp
index 1bacbe1..8a85b30 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__) || (__FreeBSD__)
+#elif defined(__APPLE__) || defined(__FreeBSD__)
#define TIXML_FSEEK fseeko
#define TIXML_FTELL ftello
#elif defined(__unix__) && defined(__x86_64__)