From ee07fbc36674b2221448a45228cdb1d5c3b0ed83 Mon Sep 17 00:00:00 2001 From: SSimboeckMesu <156324821+SSimboeckMesu@users.noreply.github.com> Date: Mon, 23 Feb 2026 14:52:19 +0100 Subject: [PATCH] Fix MSXML2 include errors in application build Including directly in the application caused C2146/C2371 errors due to missing definitions. These errors do not occur when building the library itself. Including and before solves this problem by ensuring that all required types are defined. --- include/SAX/wrappers/saxmsxml2.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/SAX/wrappers/saxmsxml2.hpp b/include/SAX/wrappers/saxmsxml2.hpp index 37719106..4f3cd4d4 100644 --- a/include/SAX/wrappers/saxmsxml2.hpp +++ b/include/SAX/wrappers/saxmsxml2.hpp @@ -15,6 +15,8 @@ #include // Include the MSXML definitions. +#include +#include #include //