From be39d04eb55d5f97414fcc79f9923145b9f10422 Mon Sep 17 00:00:00 2001 From: scott snyder <snyder@bnl.gov> Date: Tue, 25 Feb 2025 14:54:15 +0100 Subject: [PATCH] FPGATrackSimHough: Missing std:: qualifier. Fix compilation with hepmc2. --- .../FPGATrackSimHough/src/FPGATrackSimGenScanBinning.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Trigger/EFTracking/FPGATrackSim/FPGATrackSimHough/src/FPGATrackSimGenScanBinning.cxx b/Trigger/EFTracking/FPGATrackSim/FPGATrackSimHough/src/FPGATrackSimGenScanBinning.cxx index 87586615b14f..c2cda0fffcd7 100644 --- a/Trigger/EFTracking/FPGATrackSim/FPGATrackSimHough/src/FPGATrackSimGenScanBinning.cxx +++ b/Trigger/EFTracking/FPGATrackSim/FPGATrackSimHough/src/FPGATrackSimGenScanBinning.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration +// Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration /** * @file FPGATrackSimGenScanBinning.cxx @@ -182,7 +182,7 @@ std::ostream &operator<<(std::ostream &os, const std::vector<unsigned>& idx) { } return os; } -template <typename T> void FPGATrackSimGenScanBinningBase::StreamManager::writeVar(const string &var, T val) { +template <typename T> void FPGATrackSimGenScanBinningBase::StreamManager::writeVar(const std::string &var, T val) { auto emplace_result = m_map.try_emplace( var, m_setname + "_" + var + "_const.txt", std::ios_base::out); if (!emplace_result.second) { -- GitLab