Skip to content

Commit c45004c

Browse files
committed
minor fix
1 parent dfaad9f commit c45004c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/geode/mesh/core/surface_mesh.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,10 @@ namespace geode
272272
public:
273273
Impl( SurfaceMesh& surface )
274274
: polygon_around_vertex_(
275-
surface.vertex_attribute_manager()
276-
.template find_or_create_attribute< VariableAttribute,
277-
PolygonVertex >(
278-
"polygon_around_vertex", PolygonVertex{} ) ),
275+
surface.vertex_attribute_manager()
276+
.template find_or_create_attribute< VariableAttribute,
277+
PolygonVertex >(
278+
"polygon_around_vertex", PolygonVertex{} ) ),
279279
polygons_around_vertex_(
280280
surface.vertex_attribute_manager()
281281
.template find_or_create_attribute< VariableAttribute,
@@ -830,7 +830,7 @@ namespace geode
830830
const auto nb_vertices = nb_polygon_vertices( polygon );
831831
const local_index_t vertex =
832832
edge + vertex_id == nb_vertices ? 0 : edge + vertex_id;
833-
return polygon_vertex( PolygonVertex{ polygon, vertex } );
833+
return polygon_vertex( { polygon, vertex } );
834834
}
835835

836836
template < index_t dimension >

0 commit comments

Comments
 (0)