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 1846e23 commit 956600a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class KinematicsParameters {
* @fn ~KinematicsParameters
* @brief Destructor
*/
~KinematicsParameters() {};
~KinematicsParameters(){};

// Getter
/**
Expand Down

0 comments on commit 956600a

Please sign in to comment.