Modernize code: very last fixes (#6290)
[oweals/minetest.git] / src / particles.h
index 64b4db0c400aa500c417eb2da90c16a2d7200e0b..1956580452cf6f8f91c67608a57061d566dc6337 100644 (file)
@@ -53,7 +53,7 @@ class Particle : public scene::ISceneNode
                u8 glow,
                video::SColor color = video::SColor(0xFFFFFFFF)
        );
-       ~Particle();
+       ~Particle() = default;
 
        virtual const aabb3f &getBoundingBox() const
        {
@@ -133,7 +133,7 @@ class ParticleSpawner
                const struct TileAnimationParams &anim, u8 glow,
                ParticleManager* p_manager);
 
-       ~ParticleSpawner();
+       ~ParticleSpawner() = default;
 
        void step(float dtime, ClientEnvironment *env);