Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Src/Particle/AMReX_ParticleContainer.H
Original file line number Diff line number Diff line change
Expand Up @@ -1370,14 +1370,14 @@ public:
/** Create an empty particle container
*
* This creates a new AMReX particle container type with same compile-time
* and run-time attributes. But, it can change its allocator. This is
* helpful when creating temporary particle buffers for filter operations
* and run-time attributes. But, it can change its allocator (default: same allocator).
* This is helpful when creating temporary particle buffers for filter operations
* and device-to-host copies.
*
* @tparam Allocator AMReX allocator, e.g., amrex::PinnedArenaAllocator
* @tparam Allocator AMReX allocator, e.g., amrex::PinnedArenaAllocator, default: same allocator as the creating PC
* @return an empty particle container
* */
template <template<class> class NewAllocator=amrex::DefaultAllocator>
template <template<class> class NewAllocator=Allocator>
ContainerLike<NewAllocator>
make_alike () const
{
Expand Down
Loading