Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 15, 2024
1 parent db6ffcc commit 8bd8eec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/sot/pattern-generator/next-step.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class SOTNEXTSTEP_EXPORT NextStep : public Entity {
virtual void starter(const int &timeCurr);
virtual void stoper(const int &timeCurr);

virtual void introductionCallBack(const int &){};
virtual void introductionCallBack(const int &) {};

int &triggerCall(int &dummy, int timeCurr);

Expand Down
7 changes: 3 additions & 4 deletions src/pg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1455,14 +1455,13 @@ int &PatternGenerator::OneStepOfControl(int &dummy, int time) {
} else {
std::cout << "The state of the robot and the one "
<< "return by the WPG are different" << std::endl;
sotDEBUG(25) << "Size not coherent between "
<< "CurrentState and "
sotDEBUG(25) << "Size not coherent between " << "CurrentState and "
<< "m_JointErrorValuesForWalking: "
<< CurrentState.size() << " "
<< m_JointErrorValuesForWalking.size() << " " << endl;
}
sotDEBUG(2) << "Juste after updating "
<< "m_JointErrorValuesForWalking" << endl;
sotDEBUG(2) << "Juste after updating " << "m_JointErrorValuesForWalking"
<< endl;

sotDEBUG(1) << "lLeftFootPosition : " << lLeftFootPosition.x << " "
<< lLeftFootPosition.y << " " << lLeftFootPosition.z << " "
Expand Down

0 comments on commit 8bd8eec

Please sign in to comment.