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

@@ -1293,7 +1293,7 @@ namespace gridfire {
if (status <= 0 || status >= 4) {
std::stringstream msg;
msg << "While working on QSE group with algebraic species: ";
int count = 0;
size_t count = 0;
for (const auto& species: algebraic_species) {
msg << species;
if (count < algebraic_species.size() - 1) {