Skip to content

Commit

Permalink
style: CI format update
Browse files Browse the repository at this point in the history
  • Loading branch information
panquez authored and BotellaA committed Jan 10, 2020
1 parent cdc95a0 commit a5e2c62
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions include/geode/mesh/core/detail/facet_storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ namespace geode
friend class bitsery::Access;
FacetStorage()
: counter_(
facet_attribute_manager_
.template find_or_create_attribute< VariableAttribute,
index_t >( "counter", 1 ) ),
facet_attribute_manager_
.template find_or_create_attribute< VariableAttribute,
index_t >( "counter", 1 ) ),
vertices_(
facet_attribute_manager_
.template find_or_create_attribute< VariableAttribute,
Expand Down
2 changes: 1 addition & 1 deletion src/geode/mesh/builder/polyhedral_solid_builder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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" );
}
Expand Down
8 changes: 4 additions & 4 deletions src/geode/mesh/core/polygonal_surface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,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{} ) )
{
}

Expand Down
10 changes: 5 additions & 5 deletions src/geode/mesh/core/polyhedral_solid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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" );
}
Expand Down Expand Up @@ -165,10 +165,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{} ) )
{
}

Expand Down

0 comments on commit a5e2c62

Please sign in to comment.