mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-10 07:26:03 -06:00
System : Add missing default statements
This commit is contained in:
parent
245ea2dac2
commit
ae064463a9
@ -1904,6 +1904,7 @@ void RigCaseCellResultsData::computeNncCombRiTrans()
|
||||
permIdxFunc = permZIdxFunc;
|
||||
permResults = &permZResults;
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (!permIdxFunc) continue;
|
||||
|
@ -138,6 +138,8 @@ double RigCombMultResultAccessor::nativeMultScalar(size_t gridLocalCellIndex, cv
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
// FaceScalar with value HUGE_VAL means value outside valid IJK-range. Clamp to 1.0 as this means no change in MULT factor.
|
||||
|
@ -134,6 +134,8 @@ double RigCombTransResultAccessor::cellFaceScalar(size_t gridLocalCellIndex, cvf
|
||||
return this->neighborCellTran(gridLocalCellIndex, cvf::StructGridInterface::NEG_K, m_zTransAccessor.p());
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return HUGE_VAL;
|
||||
|
Loading…
Reference in New Issue
Block a user