We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e69ea commit ecfca08Copy full SHA for ecfca08
SU2_CFD/src/output/COutput.cpp
@@ -1548,7 +1548,7 @@ void COutput::PreprocessVolumeOutput(CConfig *config){
1548
* object gets an offset so that we know where to find the data in the Local_Data() array.
1549
* Note that the default offset is -1. An index !=-1 defines this field as part of the output. ---*/
1550
1551
- for (unsigned short iField_Output = 0; iField_Output < volumeOutput_List.size(); iField_Output++) {
+ for (size_t iField_Output = 0; iField_Output < volumeOutput_List.size(); iField_Output++) {
1552
1553
const string &fieldReference = volumeOutput_List[iField_Output];
1554
if (volumeOutput_Map.count(fieldReference) > 0) {
0 commit comments