Skip to content

Commit a43af67

Browse files
BenPinetgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 43bccb0 commit a43af67

File tree

10 files changed

+35
-34
lines changed

10 files changed

+35
-34
lines changed

include/geode/basic/attribute.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ namespace geode
372372
AttributeProperties properties,
373373
AttributeBase::AttributeKey )
374374
: VariableAttribute(
375-
std::move( default_value ), std::move( properties ) )
375+
std::move( default_value ), std::move( properties ) )
376376
{
377377
}
378378

@@ -761,7 +761,7 @@ namespace geode
761761
AttributeProperties properties,
762762
AttributeBase::AttributeKey )
763763
: SparseAttribute(
764-
std::move( default_value ), std::move( properties ) )
764+
std::move( default_value ), std::move( properties ) )
765765
{
766766
}
767767

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,

src/geode/model/mixin/core/block.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace geode
6161
template < index_t dimension >
6262
Block< dimension >::Block()
6363
: Block( MeshFactory::default_impl(
64-
PolyhedralSolid< dimension >::type_name_static() ) )
64+
PolyhedralSolid< dimension >::type_name_static() ) )
6565
{
6666
}
6767

src/geode/model/mixin/core/blocks.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ namespace geode
6161
Blocks< dimension >::~Blocks() = default;
6262

6363
template < index_t dimension >
64-
auto Blocks< dimension >::operator=(
65-
Blocks&& ) noexcept -> Blocks& = default;
64+
auto Blocks< dimension >::operator=( Blocks&& ) noexcept
65+
-> Blocks& = default;
6666

6767
template < index_t dimension >
6868
index_t Blocks< dimension >::nb_blocks() const

src/geode/model/mixin/core/corner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ namespace geode
119119
}
120120

121121
template < index_t dimension >
122-
auto Corner< dimension >::modifiable_mesh(
123-
CornersBuilderKey /*unused*/ ) -> Mesh&
122+
auto Corner< dimension >::modifiable_mesh( CornersBuilderKey /*unused*/ )
123+
-> Mesh&
124124
{
125125
return modifiable_mesh();
126126
}

src/geode/model/mixin/core/line.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ namespace geode
152152
}
153153

154154
template < index_t dimension >
155-
auto Line< dimension >::modifiable_mesh(
156-
LinesBuilderKey /*unused*/ ) -> Mesh&
155+
auto Line< dimension >::modifiable_mesh( LinesBuilderKey /*unused*/ )
156+
-> Mesh&
157157
{
158158
return modifiable_mesh();
159159
}

src/geode/model/mixin/core/line_collections.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,9 @@ namespace geode
260260
}
261261

262262
template < index_t dimension >
263-
auto LineCollections< dimension >::ModifiableLineCollectionRange::end()
264-
const -> const ModifiableLineCollectionRange&
263+
auto
264+
LineCollections< dimension >::ModifiableLineCollectionRange::end() const
265+
-> const ModifiableLineCollectionRange&
265266
{
266267
return *this;
267268
}

src/geode/model/mixin/core/relationships.cpp

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -476,8 +476,8 @@ namespace geode
476476
Relationships::RelationRangeIterator::RelationRangeIterator(
477477
const Relationships& relationships, const uuid& component_id )
478478
: impl_( *relationships.impl_,
479-
relationships.impl_->begin_edge( component_id ),
480-
relationships.impl_->end_edge( component_id ) )
479+
relationships.impl_->begin_edge( component_id ),
480+
relationships.impl_->end_edge( component_id ) )
481481
{
482482
}
483483

@@ -560,8 +560,8 @@ namespace geode
560560
Relationships::BoundaryRangeIterator::BoundaryRangeIterator(
561561
const Relationships& relationships, const uuid& component_id )
562562
: impl_( *relationships.impl_,
563-
relationships.impl_->begin_edge( component_id ),
564-
relationships.impl_->end_edge( component_id ) )
563+
relationships.impl_->begin_edge( component_id ),
564+
relationships.impl_->end_edge( component_id ) )
565565
{
566566
}
567567

@@ -644,8 +644,8 @@ namespace geode
644644
Relationships::IncidenceRangeIterator::IncidenceRangeIterator(
645645
const Relationships& relationships, const uuid& component_id )
646646
: impl_( *relationships.impl_,
647-
relationships.impl_->begin_edge( component_id ),
648-
relationships.impl_->end_edge( component_id ) )
647+
relationships.impl_->begin_edge( component_id ),
648+
relationships.impl_->end_edge( component_id ) )
649649
{
650650
}
651651

@@ -728,8 +728,8 @@ namespace geode
728728
Relationships::InternalRangeIterator::InternalRangeIterator(
729729
const Relationships& relationships, const uuid& component_id )
730730
: impl_( *relationships.impl_,
731-
relationships.impl_->begin_edge( component_id ),
732-
relationships.impl_->end_edge( component_id ) )
731+
relationships.impl_->begin_edge( component_id ),
732+
relationships.impl_->end_edge( component_id ) )
733733
{
734734
}
735735

@@ -812,8 +812,8 @@ namespace geode
812812
Relationships::EmbeddingRangeIterator::EmbeddingRangeIterator(
813813
const Relationships& relationships, const uuid& component_id )
814814
: impl_( *relationships.impl_,
815-
relationships.impl_->begin_edge( component_id ),
816-
relationships.impl_->end_edge( component_id ) )
815+
relationships.impl_->begin_edge( component_id ),
816+
relationships.impl_->end_edge( component_id ) )
817817
{
818818
}
819819

@@ -896,8 +896,8 @@ namespace geode
896896
Relationships::ItemRangeIterator::ItemRangeIterator(
897897
const Relationships& relationships, const uuid& component_id )
898898
: impl_( *relationships.impl_,
899-
relationships.impl_->begin_edge( component_id ),
900-
relationships.impl_->end_edge( component_id ) )
899+
relationships.impl_->begin_edge( component_id ),
900+
relationships.impl_->end_edge( component_id ) )
901901
{
902902
}
903903

@@ -980,8 +980,8 @@ namespace geode
980980
Relationships::CollectionRangeIterator::CollectionRangeIterator(
981981
const Relationships& relationships, const uuid& component_id )
982982
: impl_( *relationships.impl_,
983-
relationships.impl_->begin_edge( component_id ),
984-
relationships.impl_->end_edge( component_id ) )
983+
relationships.impl_->begin_edge( component_id ),
984+
relationships.impl_->end_edge( component_id ) )
985985
{
986986
}
987987

src/geode/model/mixin/core/surface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ namespace geode
7979
template < index_t dimension >
8080
Surface< dimension >::Surface()
8181
: Surface( MeshFactory::default_impl(
82-
PolygonalSurface< dimension >::type_name_static() ) )
82+
PolygonalSurface< dimension >::type_name_static() ) )
8383
{
8484
}
8585

src/geode/model/mixin/core/vertex_identifier.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ namespace geode
7272
public:
7373
Impl()
7474
: component_vertices_(
75-
unique_vertices_.vertex_attribute_manager()
76-
.find_or_create_attribute< VariableAttribute,
77-
std::vector< ComponentMeshVertex > >(
78-
"component vertices",
79-
std::vector< ComponentMeshVertex >{} ) )
75+
unique_vertices_.vertex_attribute_manager()
76+
.find_or_create_attribute< VariableAttribute,
77+
std::vector< ComponentMeshVertex > >(
78+
"component vertices",
79+
std::vector< ComponentMeshVertex >{} ) )
8080
{
8181
}
8282

0 commit comments

Comments
 (0)