Skip to content

Commit

Permalink
Merge pull request #10860 from davidlt/SiStripRecHitMatcher-cache
Browse files Browse the repository at this point in the history
SiStripRecHitMatcher.h: remove non-POD VLA
  • Loading branch information
davidlange6 committed Aug 23, 2015
2 parents 426cf23 + 4833558 commit b87be4f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -185,7 +185,7 @@ void SiStripRecHitMatcher::doubleMatch(MonoIterator monoRHiter, MonoIterator mon



StereoInfo cache[std::distance(seconditer,seconditerend)];
std::vector<StereoInfo> cache(std::distance(seconditer,seconditerend));
//iterate on stereo rechits
// fill cache with relevant info
int cacheSize=0;
Expand Down

0 comments on commit b87be4f

Please sign in to comment.