From ea4a00e93b515ed30feaaee16c3272cffe0f0c9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastia=CC=81n=20Barschkis?= Date: Mon, 27 Jul 2020 10:32:12 +0200 Subject: Fluid: Fix warnings from max particle option -Wreorder was the issue. --- extern/mantaflow/preprocessed/particle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/mantaflow/preprocessed/particle.cpp b/extern/mantaflow/preprocessed/particle.cpp index 9561365af3d..8c26156358d 100644 --- a/extern/mantaflow/preprocessed/particle.cpp +++ b/extern/mantaflow/preprocessed/particle.cpp @@ -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) { } -- cgit v1.2.3