Skip to content

Commit f87e325

Browse files
committed
Merge pull request cms-sw#848 from gartung/fix-global-stream-cache
Multithreaded framework -- Return pointer to streamCache type
2 parents 728746a + 30e6f25 commit f87e325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FWCore/Framework/interface/global/implementors.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace edm {
4747
}
4848
}
4949
protected:
50-
T * streamCache(edm::StreamID iID) const { return caches_[iID.value()]; }
50+
C * streamCache(edm::StreamID iID) const { return caches_[iID.value()]; }
5151
private:
5252
virtual void preallocStreams(unsigned int iNStreams) override final {
5353
caches_.resize(iNStreams,static_cast<C*>(nullptr));

0 commit comments

Comments
 (0)