Skip to content

Commit aab15f6

Browse files
MelchiorSchuhgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 16b657f commit aab15f6

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

include/geode/geometry/point.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ namespace geode
245245
explicit OpenGeodePointException(
246246
Point< dimension > point_in, const Args &...message )
247247
: OpenGeodeException{ absl::StrCat(
248-
message..., " at ", point_in.string() ) },
248+
message..., " at ", point_in.string() ) },
249249
point{ std::move( point_in ) }
250250
{
251251
}

include/geode/mesh/core/detail/facet_storage.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ namespace geode
4646
protected:
4747
FacetStorage()
4848
: counter_(
49-
facet_attribute_manager_
50-
.template find_or_create_attribute< VariableAttribute,
51-
index_t >( "counter", 1u, { false, false } ) ),
49+
facet_attribute_manager_
50+
.template find_or_create_attribute< VariableAttribute,
51+
index_t >( "counter", 1u, { false, false } ) ),
5252
vertices_(
5353
facet_attribute_manager_
5454
.template find_or_create_attribute< VariableAttribute,

include/geode/mesh/core/private/edges_impl.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ namespace geode
3939
public:
4040
explicit EdgesImpl( Graph& graph )
4141
: edges_(
42-
graph.edge_attribute_manager()
43-
.template find_or_create_attribute< VariableAttribute,
44-
std::array< index_t, 2 > >( "edges",
45-
std::array< index_t, 2 >{ NO_ID, NO_ID },
46-
{ false, false } ) )
42+
graph.edge_attribute_manager()
43+
.template find_or_create_attribute< VariableAttribute,
44+
std::array< index_t, 2 > >( "edges",
45+
std::array< index_t, 2 >{ NO_ID, NO_ID },
46+
{ false, false } ) )
4747
{
4848
}
4949

src/geode/geometry/basic_objects/circle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ namespace geode
100100
}
101101
Circle::Circle( const Circle& ) = default;
102102
Circle::Circle( const OwnerCircle& other )
103-
: Base( { other.plane().normal(), other.plane().origin() },
104-
other.radius() )
103+
: Base(
104+
{ other.plane().normal(), other.plane().origin() }, other.radius() )
105105
{
106106
}
107107
Circle& Circle::operator=( const Circle& ) = default;

src/geode/mesh/core/solid_mesh.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,10 @@ namespace geode
387387
public:
388388
explicit Impl( SolidMesh& solid )
389389
: polyhedron_around_vertex_(
390-
solid.vertex_attribute_manager()
391-
.template find_or_create_attribute< VariableAttribute,
392-
PolyhedronVertex >(
393-
"polyhedron_around_vertex", PolyhedronVertex{} ) ),
390+
solid.vertex_attribute_manager()
391+
.template find_or_create_attribute< VariableAttribute,
392+
PolyhedronVertex >(
393+
"polyhedron_around_vertex", PolyhedronVertex{} ) ),
394394
polyhedra_around_vertex_(
395395
solid.vertex_attribute_manager()
396396
.template find_or_create_attribute< VariableAttribute,

src/geode/mesh/core/surface_mesh.cpp

Lines changed: 4 additions & 4 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,

src/geode/mesh/helpers/detail/curve_merger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ namespace geode
205205
}
206206

207207
template < index_t dimension >
208-
auto EdgedCurveMerger< dimension >::edge_origins(
209-
index_t edge ) const -> const EdgeOrigins&
208+
auto EdgedCurveMerger< dimension >::edge_origins( index_t edge ) const
209+
-> const EdgeOrigins&
210210
{
211211
return impl_->edge_origins( edge );
212212
}

0 commit comments

Comments
 (0)