Skip to content

Commit

Permalink
Try to fix Doxygen warning
Browse files Browse the repository at this point in the history
  • Loading branch information
EZoni committed Dec 6, 2024
1 parent 685d913 commit c8fcb32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/Utils/ParticleUtils.H
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace ParticleUtils {
*/
amrex::DenseBins<typename WarpXParticleContainer::ParticleTileType::ParticleTileDataType>
findParticlesInEachCell (int lev,
amrex::MFIter const & mfi,
const amrex::MFIter & mfi,
WarpXParticleContainer::ParticleTileType & ptile);

/**
Expand Down
6 changes: 3 additions & 3 deletions Source/Utils/ParticleUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ namespace ParticleUtils

/* Find the particles and count the particles that are in each cell.
Note that this does *not* rearrange particle arrays */
amrex::DenseBins<typename WarpXParticleContainer::ParticleTileType::ParticleTileDataType>
amrex::DenseBins<ParticleTileDataType>
findParticlesInEachCell (int lev,
amrex::MFIter const & mfi,
WarpXParticleContainer::ParticleTileType & ptile) {
const amrex::MFIter & mfi,
ParticleTileType & ptile) {

// Extract particle structures for this tile
int const np = ptile.numParticles();
Expand Down

0 comments on commit c8fcb32

Please sign in to comment.