Skip to content

Commit

Permalink
Swap order of collections to match declaration order, compiles, not t…
Browse files Browse the repository at this point in the history
…ested
  • Loading branch information
bryngemark committed Mar 1, 2024
1 parent c665a1a commit 1b5e7d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Recon/include/Recon/Event/HgcrocDigiCollection.h
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ class HgcrocDigiCollection {
public:
/// Connect the parent collection with an index to this iterator
explicit iterator(HgcrocDigiCollection& c, long index = 0)
: coll_{c}, digi_index_{index} {}
: digi_index_{index}, coll_{c} {}
/// Increment the digi index and return the iterator afterwards
iterator& operator++() {
digi_index_++;
Expand Down

0 comments on commit 1b5e7d5

Please sign in to comment.