Skip to content
Snippets Groups Projects

Use prefix increment operator as suggested by cppcheck

Merged Andrii Verbytskyi requested to merge averbyts/athena:prefixoperator into master
All threads resolved!
9 files
+ 9
9
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -103,7 +103,7 @@ std::unique_ptr<RegSelSiLUT> TGC_RegSelCondAlg::createTable( const EventContext&
int maxChannelId = 0;
cabling->getReadoutIDRanges(maxRodId, maxSRodId, maxSswId, maxSbloc, minChannelId, maxChannelId);
for (std::vector<Identifier>::const_iterator i = idfirst; i != idlast; i++) {
for (std::vector<Identifier>::const_iterator i = idfirst; i != idlast; ++i) {
Identifier Id = *i;
IdentifierHash hashId;
Loading