Skip to content

Commit

Permalink
Fix clang warnings (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
makortel authored and fwyzard committed Nov 9, 2020
1 parent 0e9e62a commit fe535d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ void EcalUncalibRecHitProducerGPU::acquire(edm::Event const& event,
configParameters_,
ctx.stream());

ebRecHits_ = std::move(std::make_unique<ecal::UncalibratedRecHit<ecal::Tag::soa>>());
eeRecHits_ = std::move(std::make_unique<ecal::UncalibratedRecHit<ecal::Tag::soa>>());
ebRecHits_ = std::make_unique<ecal::UncalibratedRecHit<ecal::Tag::soa>>();
eeRecHits_ = std::make_unique<ecal::UncalibratedRecHit<ecal::Tag::soa>>();

if (shouldTransferToHost_) {
// allocate for the result while kernels are running
Expand Down

0 comments on commit fe535d6

Please sign in to comment.