Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
200km committed Oct 1, 2024
1 parent 282cead commit e753978
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/components/base/component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/components/base/interface_gpio_component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class IGPIOCompo {
* @fn ~IGPIOCompo
* @brief Destructor
*/
virtual ~IGPIOCompo() {};
virtual ~IGPIOCompo(){};

/**
* @fn GpioStateChanged
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class NumericalIntegrator {
* @fn ~NumericalIntegrator
* @brief Destructor
*/
inline virtual ~NumericalIntegrator() {};
inline virtual ~NumericalIntegrator(){};

/**
* @fn Integrate
Expand Down
2 changes: 1 addition & 1 deletion src/math_physics/numerical_integration/runge_kutta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class RungeKutta : public NumericalIntegrator<N> {
* @fn ~RungeKutta
* @brief Destructor
*/
inline virtual ~RungeKutta() {};
inline virtual ~RungeKutta(){};

/**
* @fn Integrate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class KinematicsParameters {
* @fn ~KinematicsParameters
* @brief Destructor
*/
~KinematicsParameters() {};
~KinematicsParameters(){};

// Getter
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ResidualMagneticMoment {
* @fn ~ResidualMagneticMoment
* @brief Destructor
*/
~ResidualMagneticMoment() {};
~ResidualMagneticMoment(){};

// Getter
/**
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/spacecraft/structure/surface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Surface {
* @fn ~Surface
* @brief Destructor
*/
~Surface() {};
~Surface(){};

// Getter
/**
Expand Down

0 comments on commit e753978

Please sign in to comment.