Refactor : Use const reference

This commit is contained in:
Magne Sjaastad
2018-03-20 08:32:23 +01:00
parent 0b123044a1
commit af677451c6
2 changed files with 5 additions and 7 deletions
@@ -46,8 +46,7 @@ public:
RimEllipseFractureTemplate();
virtual ~RimEllipseFractureTemplate();
void fractureTriangleGeometry(std::vector<cvf::Vec3f>* nodeCoords,
std::vector<cvf::uint>* polygonIndices) override;
void fractureTriangleGeometry(std::vector<cvf::Vec3f>* nodeCoords, std::vector<cvf::uint>* polygonIndices) override;
std::vector<cvf::Vec3f> fractureBorderPolygon() override;
void changeUnits();
@@ -73,7 +72,6 @@ protected:
private:
void assignConductivityToCellsInsideEllipse();
FractureWidthAndConductivity widthAndConductivityAtWellPathIntersection() const override;
private: