We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b9613 commit a6ab833Copy full SHA for a6ab833
Src/Base/AMReX_IntegratorBase.H
@@ -22,7 +22,7 @@ template<class T>
22
struct IntegratorOps<T, std::enable_if_t<std::is_base_of_v<amrex::ParticleContainerBase, T> > >
23
{
24
25
- static void CreateLike (amrex::Vector<std::unique_ptr<T> >& V, const T& Other)
+ static void CreateLike (amrex::Vector<std::unique_ptr<T> >& V, const T& Other, bool dummy = false)
26
27
// Emplace a new T in V with the same size as Other and get a reference
28
V.emplace_back(std::make_unique<T>(Other.Geom(0), Other.ParticleDistributionMap(0), Other.ParticleBoxArray(0)));
0 commit comments