Skip to content

Commit

Permalink
Remove auto keyword: use plain ol' iterator directly
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrzewic committed Jun 7, 2016
1 parent 47c6ce3 commit bc17cec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HLT/BASE/util/AliZMQhistViewer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ int AliZMQhistViewer::GetData(void* socket)
}

//add all extracted objects to the list of veiwer objects
for (auto i: listOfObjects) {
ZMQviewerObject object(i);
if (fVerbose) Printf(" adding: %s (%s), %p", i->GetName(), i->ClassName(), i);
for (std::vector<TObject*>::iterator i=listOfObjects.begin(); i!=listOfObjects.end(); ++i) {
ZMQviewerObject object(*i);
if (fVerbose) Printf(" adding: %s (%s), %p", (*i)->GetName(), (*i)->ClassName(), *i);
incomingObjects->push_back(object);
}
}
Expand Down

0 comments on commit bc17cec

Please sign in to comment.