System : Add missing default sections of switch statements

This commit is contained in:
Magne Sjaastad 2018-02-23 21:30:24 +01:00
parent 70faea56df
commit 34c6e3d906

View File

@ -281,6 +281,8 @@ RigFemScalarResultFrames* RigFemPartResultsCollection::findOrLoadScalarResult(in
case RIG_INTEGRATION_POINT: case RIG_INTEGRATION_POINT:
m_readerInterface->readIntegrationPointField(resVarAddr.fieldName, partIndex, stepIndex, fIdx, &componentDataVectors); m_readerInterface->readIntegrationPointField(resVarAddr.fieldName, partIndex, stepIndex, fIdx, &componentDataVectors);
break; break;
default:
break;
} }
} }
@ -1998,6 +2000,8 @@ std::vector< RigFemResultAddress> RigFemPartResultsCollection::getResAddrToCompo
case RIG_INTEGRATION_POINT: case RIG_INTEGRATION_POINT:
fieldAndComponentNames = m_readerInterface->scalarIntegrationPointFieldAndComponentNames(); fieldAndComponentNames = m_readerInterface->scalarIntegrationPointFieldAndComponentNames();
break; break;
default:
break;
} }
std::vector< RigFemResultAddress> resAddressToComponents; std::vector< RigFemResultAddress> resAddressToComponents;