Skip to content

Commit

Permalink
change to size_t
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfooted committed Nov 21, 2024
1 parent 9307d7d commit 3db0627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SU2_CFD/src/output/COutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ void COutput::PreprocessVolumeOutput(CConfig *config){

if (rank == MASTER_NODE){
cout <<"Volume output fields: ";
for (size_t iReqField = 0; iReqField < nRequestedVolumeFields; iReqField++){
for (unsigned short iReqField = 0; iReqField < nRequestedVolumeFields; iReqField++){
cout << requestedVolumeFields[iReqField];
if (iReqField != nRequestedVolumeFields - 1) cout << ", ";
}
Expand Down

0 comments on commit 3db0627

Please sign in to comment.