From 698af2e774b54088664d513ed1ea4dd843e03e38 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Fri, 24 Jul 2020 00:35:51 +0200 Subject: Try to fix build error Not sure if this is the correct fix, because I can't reproduce the error. --- source/blender/simulation/intern/particle_mesh_emitter.cc | 2 ++ source/blender/simulation/intern/particle_mesh_emitter.hh | 2 ++ 2 files changed, 4 insertions(+) (limited to 'source/blender/simulation') 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; }; -- cgit v1.2.3