fix(gcc-builds): fixed signedness warnings on gcc builds

This commit is contained in:
2025-11-03 08:53:56 -05:00
parent 86d7a283a1
commit 70ebe151ba
5 changed files with 14 additions and 12 deletions

View File

@@ -888,12 +888,13 @@ namespace gridfire::reaction {
friend std::ostream& operator<<(std::ostream& os, const ReactionSet& rs) {
os << "(ReactionSet: {";
int i = 0;
size_t i = 0;
for (const auto& reaction : rs.m_reactions) {
os << *reaction;
if (i < rs.m_reactions.size() - 1) {
os << ", ";
}
++i;
}
os << "})";
return os;