File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments