Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

フォーマットの修正 #705

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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