mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Replace auto
This commit is contained in:
parent
b08e382dae
commit
27f7f07ffd
@ -173,7 +173,7 @@ RigFemScalarResultFrames* RigFemPartResultsCollection::findOrLoadScalarResult(in
|
||||
std::map<std::string, std::vector<float>> elementProperties = m_elementPropertyReader->readAllElementPropertiesInFileContainingField(resVarAddr.fieldName);
|
||||
|
||||
std::vector<RigFemScalarResultFrames*> resultsForEachComponent;
|
||||
for (auto elem : elementProperties)
|
||||
for (std::pair< std::string, std::vector<float>> elem : elementProperties)
|
||||
{
|
||||
RigFemResultAddress addressForElement(RIG_ELEMENT, elem.first, "");
|
||||
RigFemScalarResultFrames* currentFrames = m_femPartResults[partIndex]->createScalarResult(addressForElement);
|
||||
|
Loading…
Reference in New Issue
Block a user