Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
200km committed Jul 20, 2024
1 parent fd83030 commit cd9fc17
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/base/component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,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(){};

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 @@ -16,7 +16,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 @@ -54,7 +54,7 @@ class NumericalIntegratorManager {
}
}

~NumericalIntegratorManager() {}
~NumericalIntegratorManager(){}

inline std::shared_ptr<NumericalIntegrator<N>> GetIntegrator() const { return integrator_; }

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 @@ -25,7 +25,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 @@ -24,7 +24,7 @@ class Surface {
* @fn ~Surface
* @brief Destructor
*/
~Surface() {};
~Surface(){};

// Getter
/**
Expand Down

0 comments on commit cd9fc17

Please sign in to comment.