Skip to content

Commit 017016f

Browse files
committed
Merge branch 'feature_custom_species_walls' of https://github.com/su2code/su2 into feature_custom_species_walls
2 parents 062e482 + 19d0bd6 commit 017016f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common/include/option_structure.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ class COptionWallSpecies : public COptionBase {
13831383
}
13841384

13851385
// Calculate number of species for each marker
1386-
for (unsigned short i = 0; i < marker_indices.size(); i++) {
1386+
for (size_t i = 0; i < marker_indices.size(); i++) {
13871387
unsigned short start_idx = marker_indices[i] + 1; // Start after marker name
13881388
unsigned short end_idx = (i + 1 < marker_indices.size()) ? marker_indices[i + 1] : totalVals;
13891389
unsigned short entries = end_idx - start_idx;

0 commit comments

Comments
 (0)