mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Linux fixes: Added missing includes
This commit is contained in:
parent
a40b9554e5
commit
07139d3675
@ -18,13 +18,15 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
#include "cvfBase.h"
|
||||
#include "cvfCollection.h"
|
||||
#include "cafPdmPointer.h"
|
||||
#include "cvfVector3.h"
|
||||
#include "cvfBoundingBox.h"
|
||||
#include "cvfTransform.h"
|
||||
|
||||
#include "cafPdmPointer.h"
|
||||
|
||||
class RimWellPathCollection;
|
||||
class RimProject;
|
||||
class RivWellPathPartMgr;
|
||||
|
@ -30,6 +30,7 @@
|
||||
#include <QFileInfo>
|
||||
|
||||
#include <fstream>
|
||||
#include <cmath>
|
||||
|
||||
namespace caf
|
||||
{
|
||||
|
@ -296,7 +296,7 @@ void RigMainGrid::calculateFaults()
|
||||
|
||||
// Add as fault face only if the grid index is less than the neighbors
|
||||
|
||||
if (gcIdx < neighborGlobalCellIdx)
|
||||
if (static_cast<size_t>(gcIdx) < neighborGlobalCellIdx)
|
||||
{
|
||||
{
|
||||
RigFault::FaultFace ff(gcIdx, cvf::StructGridInterface::FaceType(faceIdx), neighborGlobalCellIdx);
|
||||
|
Loading…
Reference in New Issue
Block a user