Skip to content

Commit 5d30798

Browse files
MelchiorSchuhgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 65d7e34 commit 5d30798

37 files changed

+99
-98
lines changed

bindings/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# This file is autogenerated by pip-compile with Python 3.10
33
# by the following command:
44
#
5-
# pip-compile bindings/python/requirements.in
5+
# pip-compile --pre bindings/python/requirements.in
66
#

include/geode/basic/attribute.hpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,8 @@ namespace geode
283283
set_value( std::move( value ) );
284284
}
285285

286-
ConstantAttribute() : ReadOnlyAttribute< T >( AttributeProperties{} ){};
286+
ConstantAttribute()
287+
: ReadOnlyAttribute< T >( AttributeProperties{} ) {};
287288

288289
template < typename Archive >
289290
void serialize( Archive& archive )
@@ -425,7 +426,8 @@ namespace geode
425426
values_.reserve( 10 );
426427
}
427428

428-
VariableAttribute() : ReadOnlyAttribute< T >( AttributeProperties{} ){};
429+
VariableAttribute()
430+
: ReadOnlyAttribute< T >( AttributeProperties{} ) {};
429431

430432
template < typename Archive >
431433
void serialize( Archive& archive )
@@ -620,7 +622,7 @@ namespace geode
620622
}
621623

622624
VariableAttribute()
623-
: ReadOnlyAttribute< bool >( AttributeProperties{} ){};
625+
: ReadOnlyAttribute< bool >( AttributeProperties{} ) {};
624626

625627
template < typename Archive >
626628
void serialize( Archive& archive )
@@ -819,7 +821,7 @@ namespace geode
819821
values_.reserve( 10 );
820822
}
821823

822-
SparseAttribute() : ReadOnlyAttribute< T >( AttributeProperties{} ){};
824+
SparseAttribute() : ReadOnlyAttribute< T >( AttributeProperties{} ) {};
823825

824826
template < typename Archive >
825827
void serialize( Archive& archive )

include/geode/model/mixin/builder/topology_builder.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ namespace geode
3939
protected:
4040
explicit TopologyBuilder( Topology& topology )
4141
: RelationshipsBuilder( topology ),
42-
VertexIdentifierBuilder( topology ){};
42+
VertexIdentifierBuilder( topology ) {};
4343
};
4444
} // namespace geode

src/geode/basic/cell_array.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ namespace geode
134134
CellArray< dimension >::CellArray( CellArray&& ) noexcept = default;
135135

136136
template < index_t dimension >
137-
auto CellArray< dimension >::operator=( CellArray&& ) noexcept
138-
-> CellArray& = default;
137+
auto CellArray< dimension >::operator=(
138+
CellArray&& ) noexcept -> CellArray& = default;
139139

140140
template < index_t dimension >
141141
CellArray< dimension >::~CellArray() = default;

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(
104-
{ other.plane().normal(), other.plane().origin() }, other.radius() )
103+
: Base( { other.plane().normal(), other.plane().origin() },
104+
other.radius() )
105105
{
106106
}
107107
Circle& Circle::operator=( const Circle& ) = default;

src/geode/geometry/basic_objects/infinite_line.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace geode
7878
OwnerInfiniteLine< dimension >::OwnerInfiniteLine(
7979
const Segment< dimension >& segment )
8080
: OwnerInfiniteLine(
81-
segment.normalized_direction(), segment.vertices()[0] )
81+
segment.normalized_direction(), segment.vertices()[0] )
8282
{
8383
}
8484
template < index_t dimension >

src/geode/geometry/basic_objects/tetrahedron.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ namespace geode
104104
Tetrahedron::Tetrahedron( const Tetrahedron& other ) noexcept = default;
105105
Tetrahedron::Tetrahedron( const OwnerTetrahedron& other ) noexcept
106106
: Base( other.vertices()[0],
107-
other.vertices()[1],
108-
other.vertices()[2],
109-
other.vertices()[3] )
107+
other.vertices()[1],
108+
other.vertices()[2],
109+
other.vertices()[3] )
110110
{
111111
}
112112
Tetrahedron& Tetrahedron::operator=(

src/geode/image/core/raster_image.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ namespace geode
109109
}
110110

111111
template < index_t dimension >
112-
auto RasterImage< dimension >::cell_indices( index_t index ) const
113-
-> CellIndices
112+
auto RasterImage< dimension >::cell_indices(
113+
index_t index ) const -> CellIndices
114114
{
115115
return impl_->cell_indices( *this, index );
116116
}

src/geode/mesh/builder/geode/geode_edged_curve_builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace geode
3434
OpenGeodeEdgedCurveBuilder< dimension >::OpenGeodeEdgedCurveBuilder(
3535
VertexSet& vertex_set, MeshBuilderFactoryKey )
3636
: OpenGeodeEdgedCurveBuilder< dimension >(
37-
dynamic_cast< OpenGeodeEdgedCurve< dimension >& >( vertex_set ) )
37+
dynamic_cast< OpenGeodeEdgedCurve< dimension >& >( vertex_set ) )
3838
{
3939
}
4040

src/geode/mesh/builder/geode/geode_hybrid_solid_builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace geode
3434
OpenGeodeHybridSolidBuilder< dimension >::OpenGeodeHybridSolidBuilder(
3535
VertexSet& vertex_set, MeshBuilderFactoryKey )
3636
: OpenGeodeHybridSolidBuilder< dimension >(
37-
dynamic_cast< OpenGeodeHybridSolid< dimension >& >( vertex_set ) )
37+
dynamic_cast< OpenGeodeHybridSolid< dimension >& >( vertex_set ) )
3838
{
3939
}
4040

0 commit comments

Comments
 (0)