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:
authorSaran Tunyasuvunakool <stunya@google.com>2021-12-21 19:05:29 +0300
committerSaran Tunyasuvunakool <stunya@google.com>2021-12-21 19:05:29 +0300
commit6cc405853b910e323e25469441b1c6aaba6a59bf (patch)
treed449061dc346230c514adddc7d5c1c11fc451b30
parenta9773976845b19e89020c1215781e71116477ef1 (diff)
Convert endings of lines 106-107 in tinyxml2.cpp to CRLF.
-rwxr-xr-xtinyxml2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyxml2.cpp b/tinyxml2.cpp
index d32b2b3..f0296b2 100755
--- a/tinyxml2.cpp
+++ b/tinyxml2.cpp
@@ -103,8 +103,8 @@ distribution.
#if defined(_WIN64)
#define TIXML_FSEEK _fseeki64
#define TIXML_FTELL _ftelli64
-#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) \
- || defined(__NetBSD__) || defined(__DragonFly__) || defined(__ANDROID__)
+#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) \
+ || defined(__NetBSD__) || defined(__DragonFly__) || defined(__ANDROID__)
#define TIXML_FSEEK fseeko
#define TIXML_FTELL ftello
#elif defined(__unix__) && defined(__x86_64__)