Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2020-07-27 11:32:12 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-07-27 11:32:12 +0300
commitea4a00e93b515ed30feaaee16c3272cffe0f0c9d (patch)
treec128a28058220b005467d5c520a7a3eddb9781f8 /extern/mantaflow
parentd906116eba70e40900f53f5a53fcdfb4d4b7b834 (diff)
Fluid: Fix warnings from max particle option
-Wreorder was the issue.
Diffstat (limited to 'extern/mantaflow')
-rw-r--r--extern/mantaflow/preprocessed/particle.cpp2
1 files changed, 1 insertions, 1 deletions
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)
{
}