Linux compile fix

This commit is contained in:
Jacob Storen 2015-10-14 06:57:11 -07:00
parent b2f4f64aca
commit 021de1444d

View File

@ -227,7 +227,7 @@ void RigWellLogExtractor::populateReturnArrays(std::map<RigMDCellIdxEnterLeaveKe
void RigWellLogExtractor::appendIntersectionToArrays(double measuredDepth, const HexIntersectionInfo& intersection)
{
m_measuredDepth.push_back (measuredDepth);
m_trueVerticalDepth.push_back (abs(intersection.m_intersectionPoint[2]));
m_trueVerticalDepth.push_back (fabs(intersection.m_intersectionPoint[2]));
m_intersections.push_back (intersection.m_intersectionPoint);
m_intersectedCells.push_back (intersection.m_hexIndex);
m_intersectedCellFaces.push_back(intersection.m_face);