mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3197 Refactoring : Fix missing const
This commit is contained in:
parent
252950e625
commit
92d49248b0
@ -140,7 +140,7 @@ std::vector<RigCompletionData>
|
||||
// To handle several fractures in the same eclipse cell we need to keep track of the transmissibility
|
||||
// to the well from each fracture intersecting the cell and sum these transmissibilities at the end.
|
||||
// std::map <eclipseCellIndex ,map< fracture, trans> >
|
||||
std::map<size_t, std::map<RimFracture*, double>> eclCellIdxToTransPrFractureMap;
|
||||
std::map<size_t, std::map<const RimFracture*, double>> eclCellIdxToTransPrFractureMap;
|
||||
|
||||
for (const RimFracture* fracture : fractures)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user