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:
authorJacques Lucke <jacques@blender.org>2020-07-24 01:35:51 +0300
committerJacques Lucke <jacques@blender.org>2020-07-24 01:35:51 +0300
commit698af2e774b54088664d513ed1ea4dd843e03e38 (patch)
tree90ce816b767945f8f3957a3f4fb2a969b6be1467 /source/blender/simulation
parent0b50ea51ccdf8ac5b7f1cecee027c1ddd1b9620f (diff)
Try to fix build error
Not sure if this is the correct fix, because I can't reproduce the error.
Diffstat (limited to 'source/blender/simulation')
-rw-r--r--source/blender/simulation/intern/particle_mesh_emitter.cc2
-rw-r--r--source/blender/simulation/intern/particle_mesh_emitter.hh2
2 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/simulation/intern/particle_mesh_emitter.cc b/source/blender/simulation/intern/particle_mesh_emitter.cc
index 486cd1142c3..15a6bffa884 100644
--- a/source/blender/simulation/intern/particle_mesh_emitter.cc
+++ b/source/blender/simulation/intern/particle_mesh_emitter.cc
@@ -28,6 +28,8 @@
namespace blender::sim {
+ParticleMeshEmitter::~ParticleMeshEmitter() = default;
+
struct EmitterSettings {
Object *object;
float rate;
diff --git a/source/blender/simulation/intern/particle_mesh_emitter.hh b/source/blender/simulation/intern/particle_mesh_emitter.hh
index 8ad7b6f15f2..601697c9986 100644
--- a/source/blender/simulation/intern/particle_mesh_emitter.hh
+++ b/source/blender/simulation/intern/particle_mesh_emitter.hh
@@ -39,6 +39,8 @@ class ParticleMeshEmitter final : public ParticleEmitter {
{
}
+ ~ParticleMeshEmitter();
+
void emit(ParticleEmitterContext &context) const override;
};