diff --git a/src/components/base/component.hpp b/src/components/base/component.hpp index 2cfc64db5..2b541dffd 100644 --- a/src/components/base/component.hpp +++ b/src/components/base/component.hpp @@ -78,13 +78,13 @@ class Component : public ITickable { * @brief Pure virtual function used to calculate high-frequency disturbances(e.g. RW jitter) * @note Override only when high-frequency disturbances need to be calculated. */ - virtual void FastUpdate() {}; + virtual void FastUpdate(){}; /** * @fn PowerOffRoutine * @brief Pure virtual function executed when the power switch is off. */ - virtual void PowerOffRoutine() {}; + virtual void PowerOffRoutine(){}; environment::ClockGenerator* clock_generator_; //!< Clock generator PowerPort* power_port_; //!< Power port diff --git a/src/components/base/interface_gpio_component.hpp b/src/components/base/interface_gpio_component.hpp index 6a5d3bb75..9df3db260 100644 --- a/src/components/base/interface_gpio_component.hpp +++ b/src/components/base/interface_gpio_component.hpp @@ -18,7 +18,7 @@ class IGPIOCompo { * @fn ~IGPIOCompo * @brief Destructor */ - virtual ~IGPIOCompo() {}; + virtual ~IGPIOCompo(){}; /** * @fn GpioStateChanged diff --git a/src/math_physics/numerical_integration/numerical_integrator.hpp b/src/math_physics/numerical_integration/numerical_integrator.hpp index ae708a753..461bfa225 100644 --- a/src/math_physics/numerical_integration/numerical_integrator.hpp +++ b/src/math_physics/numerical_integration/numerical_integrator.hpp @@ -32,7 +32,7 @@ class NumericalIntegrator { * @fn ~NumericalIntegrator * @brief Destructor */ - inline virtual ~NumericalIntegrator() {}; + inline virtual ~NumericalIntegrator(){}; /** * @fn Integrate diff --git a/src/math_physics/numerical_integration/runge_kutta.hpp b/src/math_physics/numerical_integration/runge_kutta.hpp index a24b4f53b..d2072d4cb 100644 --- a/src/math_physics/numerical_integration/runge_kutta.hpp +++ b/src/math_physics/numerical_integration/runge_kutta.hpp @@ -29,7 +29,7 @@ class RungeKutta : public NumericalIntegrator { * @fn ~RungeKutta * @brief Destructor */ - inline virtual ~RungeKutta() {}; + inline virtual ~RungeKutta(){}; /** * @fn Integrate diff --git a/src/simulation/spacecraft/structure/kinematics_parameters.hpp b/src/simulation/spacecraft/structure/kinematics_parameters.hpp index c4dfadeb2..b97209727 100644 --- a/src/simulation/spacecraft/structure/kinematics_parameters.hpp +++ b/src/simulation/spacecraft/structure/kinematics_parameters.hpp @@ -26,7 +26,7 @@ class KinematicsParameters { * @fn ~KinematicsParameters * @brief Destructor */ - ~KinematicsParameters() {}; + ~KinematicsParameters(){}; // Getter /** diff --git a/src/simulation/spacecraft/structure/residual_magnetic_moment.hpp b/src/simulation/spacecraft/structure/residual_magnetic_moment.hpp index ae06bb85d..1e00b7e89 100644 --- a/src/simulation/spacecraft/structure/residual_magnetic_moment.hpp +++ b/src/simulation/spacecraft/structure/residual_magnetic_moment.hpp @@ -26,7 +26,7 @@ class ResidualMagneticMoment { * @fn ~ResidualMagneticMoment * @brief Destructor */ - ~ResidualMagneticMoment() {}; + ~ResidualMagneticMoment(){}; // Getter /** diff --git a/src/simulation/spacecraft/structure/surface.hpp b/src/simulation/spacecraft/structure/surface.hpp index 73a09d6e6..c98386bae 100644 --- a/src/simulation/spacecraft/structure/surface.hpp +++ b/src/simulation/spacecraft/structure/surface.hpp @@ -26,7 +26,7 @@ class Surface { * @fn ~Surface * @brief Destructor */ - ~Surface() {}; + ~Surface(){}; // Getter /**