From cdd2c7f5ab797f01610f27c3bc9c13323d8844b1 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 6 Jul 2026 16:58:56 -0500 Subject: [PATCH] JCF: supply reference rather than pointer to session in make_source_id_geo_id_map so the code compiles with changes I've performed on a branch of the same name in hdf5libs --- plugins/MLTModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MLTModule.cpp b/plugins/MLTModule.cpp index 9e2a6151..ff3b24f8 100644 --- a/plugins/MLTModule.cpp +++ b/plugins/MLTModule.cpp @@ -97,7 +97,7 @@ MLTModule::do_configure(const CommandData_t& /*obj*/) } hdf5libs::HDF5SourceIDHandler::source_id_geo_id_map_t geoidmap = - hdf5libs::HDF5SourceIDHandler::make_source_id_geo_id_map(m_session); + hdf5libs::HDF5SourceIDHandler::make_source_id_geo_id_map(*m_session); // Fill the SourceID -- Subdetector map for (auto const& [sourceid, geoids] : geoidmap) { TLOG() << "SourceID: " << sourceid;