System : Add missing default statements

This commit is contained in:
Magne Sjaastad
2018-02-23 22:39:14 +01:00
parent 245ea2dac2
commit ae064463a9
3 changed files with 14 additions and 9 deletions

View File

@@ -1891,19 +1891,20 @@ void RigCaseCellResultsData::computeNncCombRiTrans()
{
case cvf::StructGridInterface::POS_I:
case cvf::StructGridInterface::NEG_I:
permIdxFunc = permXIdxFunc;
permResults = &permXResults;
break;
permIdxFunc = permXIdxFunc;
permResults = &permXResults;
break;
case cvf::StructGridInterface::POS_J:
case cvf::StructGridInterface::NEG_J:
permIdxFunc = permYIdxFunc;
permResults = &permYResults;
break;
permIdxFunc = permYIdxFunc;
permResults = &permYResults;
break;
case cvf::StructGridInterface::POS_K:
case cvf::StructGridInterface::NEG_K:
permIdxFunc = permZIdxFunc;
permResults = &permZResults;
break;
permIdxFunc = permZIdxFunc;
permResults = &permZResults;
break;
default: break;
}
if (!permIdxFunc) continue;