Try to fix build error

Not sure if this is the correct fix, because I can't reproduce the error.
This commit is contained in:
Jacques Lucke 2020-07-24 00:35:51 +02:00
parent 0b50ea51cc
commit 698af2e774
2 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,8 @@
namespace blender::sim {
ParticleMeshEmitter::~ParticleMeshEmitter() = default;
struct EmitterSettings {
Object *object;
float rate;

View File

@ -39,6 +39,8 @@ class ParticleMeshEmitter final : public ParticleEmitter {
{
}
~ParticleMeshEmitter();
void emit(ParticleEmitterContext &context) const override;
};