From d2e945948e3edb642845e2dafa32f457ec1f7cbd Mon Sep 17 00:00:00 2001 From: MattHuangGarmin Date: Fri, 31 Oct 2025 11:28:52 +0800 Subject: [PATCH] Fix build errors on ARM Compiler 5 (DS-5) by treating the compiler like QNX, Borland C, and the Android NDK for purposes of system header includes. Although there was a PR to address this issue, the fix was missing in tinyxml2.h. --- tinyxml2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.h b/tinyxml2.h index c8011174..5f116044 100644 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -24,7 +24,7 @@ distribution. #ifndef TINYXML2_INCLUDED #define TINYXML2_INCLUDED -#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) +#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) || defined(__CC_ARM) # include # include # include