Skip to content

Commit

Permalink
Merge pull request #963 from leethomason/dfaure-kdab-work/dfaure/Wundef
Browse files Browse the repository at this point in the history
Add missing "defined"
  • Loading branch information
leethomason committed Nov 21, 2023
2 parents 800431a + 6b6d121 commit c2d3087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinyxml2.cpp
Expand Up @@ -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__)
Expand Down

0 comments on commit c2d3087

Please sign in to comment.