Fluid: Fix warnings from max particle option

-Wreorder was the issue.
This commit is contained in:
Sebastián Barschkis 2020-07-27 10:32:12 +02:00
parent d906116eba
commit ea4a00e93b
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ using namespace std;
namespace Manta {
ParticleBase::ParticleBase(FluidSolver *parent)
: PbClass(parent), mAllowCompress(true), mFreePdata(false), mMaxParticles(0)
: PbClass(parent), mMaxParticles(0), mAllowCompress(true), mFreePdata(false)
{
}