Skip to content

Commit f53a40b

Browse files
Fixed compiler warnung about type norrowing
1 parent c667353 commit f53a40b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SU2_CFD/src/output/COutput.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ COutput::COutput(const CConfig *config, unsigned short ndim, bool fem_output):
149149
wndCauchyEps = config->GetWnd_Cauchy_Eps();
150150

151151
wndConvFields.reserve(config->GetnWndConv_Field());
152-
for (unsigned short iField = 0; iField < config->GetnWndConv_Field(); iField++){
152+
for (size_t iField = 0; iField < config->GetnWndConv_Field(); iField++){
153153
wndConvFields.emplace_back(config->GetWndConv_Field(iField));
154154
}
155155

0 commit comments

Comments
 (0)