Skip to content

Commit 3617b1f

Browse files
MelchiorSchuhgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent bb6cfad commit 3617b1f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

include/geode/basic/mapping.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ namespace geode
3232
{
3333
template < typename T1,
3434
typename T2,
35-
template < typename > class StorageType >
35+
template < typename >
36+
class StorageType >
3637
class MappingBase
3738
{
3839
public:

src/geode/mesh/core/grid.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,8 @@ namespace geode
533533
}
534534

535535
template < index_t dimension >
536-
auto Grid< dimension >::cell_vertices( const CellIndices& cell_id ) const
537-
-> CellVertices
536+
auto Grid< dimension >::cell_vertices(
537+
const CellIndices& cell_id ) const -> CellVertices
538538
{
539539
return impl_->cell_vertices( cell_id );
540540
}
@@ -581,15 +581,15 @@ namespace geode
581581
}
582582

583583
template < index_t dimension >
584-
auto Grid< dimension >::cells( const Point< dimension >& query ) const
585-
-> CellsAroundVertex
584+
auto Grid< dimension >::cells(
585+
const Point< dimension >& query ) const -> CellsAroundVertex
586586
{
587587
return impl_->cells( *this, query );
588588
}
589589

590590
template < index_t dimension >
591-
auto Grid< dimension >::cells_around( VertexIndices vertex_indices ) const
592-
-> CellsAroundVertex
591+
auto Grid< dimension >::cells_around(
592+
VertexIndices vertex_indices ) const -> CellsAroundVertex
593593
{
594594
return impl_->cells_around( *this, vertex_indices );
595595
}

0 commit comments

Comments
 (0)