From 9b67afc21130509c472c48059a3caa8d8933ea88 Mon Sep 17 00:00:00 2001 From: Riccardo Maria Bianchi <riccardo.maria.bianchi@cern.ch> Date: Mon, 8 Jul 2024 13:16:37 +0200 Subject: [PATCH] fix signature, add missing 'const' --- GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp b/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp index aea205d5b..1a45473d1 100644 --- a/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp +++ b/GeoModelIO/GeoModelRead/GeoModelRead/ReadGeoModel.tpp @@ -21,7 +21,7 @@ namespace GeoModelIO { - template <typename T, class N> std::map<T,N> ReadGeoModel::getPublishedNodes(std::string publisherName, bool doCheckTable /*optional variables*/, 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