From 4a811046b316c1cbf3eb4157cb51cf334f42a7ab Mon Sep 17 00:00:00 2001 From: Andre Sailer <andre.philippe.sailer@cern.ch> Date: Tue, 23 Mar 2021 16:46:57 +0100 Subject: [PATCH] DDG4Dict: qualify std::pair, using namespace std was dropped from RootDict boilerplate --- DDG4/python/DDG4Dict.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DDG4/python/DDG4Dict.C b/DDG4/python/DDG4Dict.C index 73b3e32b2..ec18b78c4 100644 --- a/DDG4/python/DDG4Dict.C +++ b/DDG4/python/DDG4Dict.C @@ -194,12 +194,12 @@ namespace dd4hep { }; /// Container definitions for Geant4Vertex - typedef vector<Geant4Vertex*> Geant4VertexVector; - typedef map<int,Geant4Vertex*> Geant4VertexIntMap; + typedef std::vector<Geant4Vertex*> Geant4VertexVector; + typedef std::map<int,Geant4Vertex*> Geant4VertexIntMap; /// Container definitions for Geant4Particle - typedef vector<Geant4Particle*> Geant4ParticleVector; - typedef map<int,Geant4Particle*> Geant4ParticleIntMap; + typedef std::vector<Geant4Particle*> Geant4ParticleVector; + typedef std::map<int,Geant4Particle*> Geant4ParticleIntMap; } } -- GitLab