Skip to content

Commit 3616b15

Browse files
committed
compiler warnings
1 parent a065954 commit 3616b15

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Common/src/interface_interpolation/CMixingPlane.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ void CMixingPlane::SetTransferCoeff(const CConfig* const* config) {
4343
const auto donor_config = config[donorZone];
4444
const auto target_config = config[targetZone];
4545

46-
const auto nMarkerDonor = donor_geometry->GetnMarker(); // Number of markers on the interfacce
47-
const auto nMarkerTarget = target_geometry->GetnMarker();
4846
//TODO turbo this approach only works if all the turboamchinery marker
4947
// of all zones have the same amount of span wise sections.
5048
//TODO turbo initialization needed for the MPI routine should be place somewhere else.
@@ -54,7 +52,7 @@ void CMixingPlane::SetTransferCoeff(const CConfig* const* config) {
5452
targetSpans.resize(config[donorZone]->GetnMarker_MixingPlaneInterface());
5553

5654
/*--- On the donor side ---*/
57-
for (auto iMarkerInt = 0u; iMarkerInt < nMarkerInt; iMarkerInt++){
55+
for (auto iMarkerInt = 0; iMarkerInt < nMarkerInt; iMarkerInt++){
5856
int markDonor = -1, markTarget = -1;
5957
unsigned short donorFlag = 0, targetFlag = 0;
6058

0 commit comments

Comments
 (0)