From 5c808eb9f7cd50cb8caeb8869c3dd7854dba638c Mon Sep 17 00:00:00 2001 From: Lea Wedmann Date: Mon, 6 Apr 2026 15:10:50 +0200 Subject: [PATCH] Fix particle --- include/particle_filter/Particle.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/particle_filter/Particle.hpp b/include/particle_filter/Particle.hpp index ddc71f1..3208ea0 100644 --- a/include/particle_filter/Particle.hpp +++ b/include/particle_filter/Particle.hpp @@ -91,7 +91,7 @@ Particle::Particle(const StateType& state, double weight) : is_explorer_(false), m_State(state), m_Weight(weight) {} template -Particle::~Particle() {} +Particle::~Particle() {} template const StateType& Particle::getState() const {