Skip to content

Commit

Permalink
STYLE: Replace EdgeListPointerType with EdgeListType *
Browse files Browse the repository at this point in the history
Made it clearer that `QuadEdgeMeshBoundaryEdgesMeshFunction` just use a _raw_
pointer (not a smart pointer) to the edge list.
  • Loading branch information
hjmjohnson committed Jan 27, 2025
1 parent 0b14ccd commit 9c3236b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Core/QuadEdgeMesh/ExtractVertexOnMeshBoundaries/Code.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ main(int argc, char * argv[])
using MeshQEType = MeshType::QEType;
using MeshIteratorGeom = MeshQEType::IteratorGeom;

using EdgeListType = MeshType::EdgeListType;
using EdgeListPointer = MeshType::EdgeListPointerType;
using EdgeListIterator = EdgeListType::iterator;
using EdgeListPointer = MeshType::EdgeListType *;
using EdgeListIterator = MeshType::EdgeListType::iterator;

EdgeListPointer list = extractor->Evaluate(*mesh);

Expand Down

0 comments on commit 9c3236b

Please sign in to comment.