[API] changed return type to std array for improved usability
Merge request reports
Activity
Filter activity
added 1 commit
- 091c56e1 - [API] changed return type to std array for improved usability
For all the loops you adapted: why not use range-based for loops? That would make nice one-liners
auto corners = blockforest::getCornerNeighborhoodSectionIndices(); for( uint_t j = uint_t(0); j != corners.size(); ++j ) { const uint_t sectionIndex = corners[j];
would become
for( const uint_t sectionIndex : blockforest::getCornerNeighborhoodSectionIndices() ) {
Edited by Christian Godenschwagerenabled an automatic merge when the pipeline for 091c56e1 succeeds
enabled an automatic merge when the pipeline for 091c56e1 succeeds
mentioned in commit b82da6d8
Please register or sign in to reply