diff --git a/src/geode/mesh/builder/polyhedral_solid_builder.cpp b/src/geode/mesh/builder/polyhedral_solid_builder.cpp index 01b108b47..01bf82e74 100644 --- a/src/geode/mesh/builder/polyhedral_solid_builder.cpp +++ b/src/geode/mesh/builder/polyhedral_solid_builder.cpp @@ -86,7 +86,7 @@ namespace geode_unused( facet_id ); geode_unused( vertex_id ); OPENGEODE_ASSERT( vertex_id < solid.nb_polyhedron_facet_vertices( - { polyhedron_id, facet_id } ), + { polyhedron_id, facet_id } ), "[check_polyhedron_facet_vertex_id] Trying to access an invalid " "polyhedron facet vertex" ); } diff --git a/src/geode/mesh/core/graph.cpp b/src/geode/mesh/core/graph.cpp index 8805ac0ea..525cc8dda 100644 --- a/src/geode/mesh/core/graph.cpp +++ b/src/geode/mesh/core/graph.cpp @@ -43,14 +43,13 @@ namespace geode public: explicit Impl( Graph& graph ) : edges_around_vertex_( - graph.vertex_attribute_manager() - .template find_or_create_attribute< VariableAttribute, - std::vector< EdgeVertex > >( - "edges_around_vertex", [] { - std::vector< EdgeVertex > edges; - edges.reserve( 2 ); - return edges; - }() ) ) + graph.vertex_attribute_manager() + .template find_or_create_attribute< VariableAttribute, + std::vector< EdgeVertex > >( "edges_around_vertex", [] { + std::vector< EdgeVertex > edges; + edges.reserve( 2 ); + return edges; + }() ) ) { } diff --git a/src/geode/mesh/core/polygonal_surface.cpp b/src/geode/mesh/core/polygonal_surface.cpp index fae4fc418..f437aaee3 100644 --- a/src/geode/mesh/core/polygonal_surface.cpp +++ b/src/geode/mesh/core/polygonal_surface.cpp @@ -117,10 +117,10 @@ namespace geode public: explicit Impl( PolygonalSurfaceBase& surface ) : polygon_around_vertex_( - surface.vertex_attribute_manager() - .template find_or_create_attribute< VariableAttribute, - PolygonVertex >( - "polygon_around_vertex", PolygonVertex{} ) ) + surface.vertex_attribute_manager() + .template find_or_create_attribute< VariableAttribute, + PolygonVertex >( + "polygon_around_vertex", PolygonVertex{} ) ) { } diff --git a/src/geode/mesh/core/polyhedral_solid.cpp b/src/geode/mesh/core/polyhedral_solid.cpp index 078fd961d..1cdbf2d11 100644 --- a/src/geode/mesh/core/polyhedral_solid.cpp +++ b/src/geode/mesh/core/polyhedral_solid.cpp @@ -90,7 +90,7 @@ namespace geode_unused( facet_id ); geode_unused( vertex_id ); OPENGEODE_ASSERT( vertex_id < solid.nb_polyhedron_facet_vertices( - { polyhedron_id, facet_id } ), + { polyhedron_id, facet_id } ), "[check_polyhedron_facet_vertex_id] Trying to access an invalid " "polyhedron facet vertex" ); } @@ -106,10 +106,10 @@ namespace geode public: explicit Impl( PolyhedralSolid& solid ) : polyhedron_around_vertex_( - solid.vertex_attribute_manager() - .template find_or_create_attribute< VariableAttribute, - PolyhedronVertex >( - "polyhedron_around_vertex", PolyhedronVertex{} ) ) + solid.vertex_attribute_manager() + .template find_or_create_attribute< VariableAttribute, + PolyhedronVertex >( + "polyhedron_around_vertex", PolyhedronVertex{} ) ) { }