Skip to content

Commit

Permalink
Default initialize the internal maps
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Oct 10, 2024
1 parent 7ba3ed9 commit f1fc3ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/podio/LinkNavigator.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ class LinkNavigator {
}

private:
std::multimap<FromT, WeightedObject<ToT>> m_from2to; ///< Map the from to the to objects
std::multimap<ToT, WeightedObject<FromT>> m_to2from; ///< Map the to to the from objects
std::multimap<FromT, WeightedObject<ToT>> m_from2to{}; ///< Map the from to the to objects
std::multimap<ToT, WeightedObject<FromT>> m_to2from{}; ///< Map the to to the from objects
};

template <typename LinkCollT>
Expand Down

0 comments on commit f1fc3ce

Please sign in to comment.