Skip to content
Snippets Groups Projects
Commit cf74b83b authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

fix a problem with bad filename char. for Windows

git-svn-id: http://root.cern.ch/svn/root/trunk@21116 27541ba8-7e3a-0410-8455-c3a389f83636
parent a5abc6a1
No related branches found
No related tags found
No related merge requests found
...@@ -526,11 +526,11 @@ struct VecType<TrackErrD32> { ...@@ -526,11 +526,11 @@ struct VecType<TrackErrD32> {
}; };
template<> template<>
struct VecType<VecTrack<TrackD> > { struct VecType<VecTrack<TrackD> > {
static std::string name() { return "VecTrack<TrackD> >";} static std::string name() { return "VecTrackD";}
}; };
template<> template<>
struct VecType<VecTrack<TrackErrD> > { struct VecType<VecTrack<TrackErrD> > {
static std::string name() { return "VecTrack<TrackErrD> >";} static std::string name() { return "VecTrackErrD";}
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment