Skip to content

Commit

Permalink
Fixing compilation 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaraujo committed Apr 27, 2021
1 parent 1405859 commit 20d3d8a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions trunk/src/mesh/MshQuadrilateralMesher_Imp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace ENigMA

Integer aDuplicateEdgeId;

if (edgeExists(anAdvEdge, aDuplicateEdgeId, sEdges))
if (this->edgeExists(anAdvEdge, aDuplicateEdgeId, sEdges))
{
SMshAdvancingFrontEdge<Real>& aDuplicateEdge = this->m_anAdvFront[aDuplicateEdgeId];

Expand Down Expand Up @@ -581,7 +581,7 @@ namespace ENigMA

this->m_surfaceMesh.addNode(aNewNodeId, aNewNode);

CMshTriangleMesher<Real>::SNode anInteriorNode;
SNode<Real> anInteriorNode;

anInteriorNode.id = i;
anInteriorNode.remove = false;
Expand Down
19 changes: 10 additions & 9 deletions trunk/src/mesh/MshTriangleMesher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,19 @@ namespace ENigMA
};

template <typename Real>
class CMshTriangleMesher
struct SNode
{
protected:
struct SNode
{
Integer id;
bool remove;
Integer id;
bool remove;

Integer nodeId;
};
Integer nodeId;
};

std::vector<SNode> m_interiorNodes;
template <typename Real>
class CMshTriangleMesher
{
protected:
std::vector<SNode<Real>> m_interiorNodes;

std::vector<SMshAdvancingFrontEdge<Real>> m_anAdvFront;

Expand Down
2 changes: 1 addition & 1 deletion trunk/src/mesh/MshTriangleMesher_Imp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ namespace ENigMA

m_surfaceMesh.addNode(aNewNodeId, aNewNode);

SNode anInteriorNode;
SNode<Real> anInteriorNode;

anInteriorNode.id = i;
anInteriorNode.remove = false;
Expand Down

0 comments on commit 20d3d8a

Please sign in to comment.