Remove uninitialized variable used compiler warning

This commit is contained in:
Jacob Støren 2018-09-11 08:36:00 +02:00
parent dd4c359f6e
commit 01673f31cb

View File

@ -350,7 +350,7 @@ void RigMainGrid::calculateFaults(const RigActiveCellInfo* activeCellInfo)
size_t neighborReservoirCellIdx;
size_t neighborGridCellIdx;
size_t i, j, k;
size_t i = 0, j = 0, k = 0;
RigGridBase* hostGrid = nullptr;
bool firstNO_FAULTFaceForCell = true;
bool isCellActive = true;