From efa3afc90c9fa0eb72ad3e9e974bc216567e6c2f Mon Sep 17 00:00:00 2001
From: Riccardo Maria Bianchi <riccardo.maria.bianchi@cern.ch>
Date: Tue, 9 Jul 2024 23:16:40 +0200
Subject: [PATCH] add include to silence warning in VS Code

---
 GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp b/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp
index 1a45473d1..f89704cbf 100644
--- a/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp
+++ b/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp
@@ -17,11 +17,13 @@
 #include "GeoModelHelpers/variantHelpers.h"
 #include "GeoModelHelpers/throwExcept.h"
 
-
+#include <map>
 
 namespace GeoModelIO {
 
-    template <typename T, class N> std::map<T,N> ReadGeoModel::getPublishedNodes(std::string publisherName, const bool doCheckTable /*optional variables*/, const bool optionalTable /*optional variables*/) 
+    template <typename T, class N> std::map<T,N> ReadGeoModel::getPublishedNodes(std::string publisherName, 
+        const bool doCheckTable /*optional variables*/, 
+        const bool optionalTable /*optional variables*/) 
     {
         std::map<T, N> mapNodes;
         std::string keyType = "";
-- 
GitLab