Skip to content

Commit

Permalink
Don't throw a pedantic warning because of #warning (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Aug 10, 2024
1 parent 0b2292b commit 526f542
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,8 @@ std::unique_ptr<lcio::LCCollectionVec> convertTPCHits(const edm4hep::RawTimeSeri
if (edm_tpchit.isAvailable()) {
auto* lcio_tpchit = new lcio::TPCHitImpl();

#warning "unsigned long long conversion to int"
#pragma message "unsigned long long conversion to int"

lcio_tpchit->setCellID(edm_tpchit.getCellID());
lcio_tpchit->setTime(edm_tpchit.getTime());
lcio_tpchit->setCharge(edm_tpchit.getCharge());
Expand Down

0 comments on commit 526f542

Please sign in to comment.