From 5236ba6f7ab37781abb0f23d3c49dfecc505d3ea Mon Sep 17 00:00:00 2001
From: Andre Sailer <andre.philippe.sailer@cern.ch>
Date: Sun, 26 May 2024 08:31:26 +0200
Subject: [PATCH] XMLElements: fix tinyxml include

---
 DDCore/src/XML/XMLElements.cpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/DDCore/src/XML/XMLElements.cpp b/DDCore/src/XML/XMLElements.cpp
index aad6f7142..fdd8a81c9 100644
--- a/DDCore/src/XML/XMLElements.cpp
+++ b/DDCore/src/XML/XMLElements.cpp
@@ -1266,7 +1266,8 @@ Handle_t Document::clone(Handle_t source) const {
 }
 
 #ifdef DD4HEP_USE_TINYXML
-#include <tinyxml_inl.h>
-#include <tinyxmlerror_inl.h>
-#include <tinyxmlparser_inl.h>
+//These files are located parallel to this one, we cannot use angle brackets for include
+#include "tinyxml_inl.h"
+#include "tinyxmlerror_inl.h"
+#include "tinyxmlparser_inl.h"
 #endif
-- 
GitLab