Skip to content

Commit 1036ed5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6ec1766 commit 1036ed5

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

include/sot/pattern-generator/next-step.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class SOTNEXTSTEP_EXPORT NextStep : public Entity {
176176
virtual void starter(const int &timeCurr);
177177
virtual void stoper(const int &timeCurr);
178178

179-
virtual void introductionCallBack(const int &){};
179+
virtual void introductionCallBack(const int &) {};
180180

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

include/sot/pattern-generator/step-computer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class StepComputer {
5454
public: // Methods
5555
virtual void changeFirstStep(StepQueue &queue, int timeCurr) = 0;
5656
virtual void nextStep(StepQueue &queue, int timeCurr) = 0;
57-
virtual ~StepComputer(){};
57+
virtual ~StepComputer() {};
5858
};
5959

6060
} // namespace sot

src/pg.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,14 +1455,13 @@ int &PatternGenerator::OneStepOfControl(int &dummy, int time) {
14551455
} else {
14561456
std::cout << "The state of the robot and the one "
14571457
<< "return by the WPG are different" << std::endl;
1458-
sotDEBUG(25) << "Size not coherent between "
1459-
<< "CurrentState and "
1458+
sotDEBUG(25) << "Size not coherent between " << "CurrentState and "
14601459
<< "m_JointErrorValuesForWalking: "
14611460
<< CurrentState.size() << " "
14621461
<< m_JointErrorValuesForWalking.size() << " " << endl;
14631462
}
1464-
sotDEBUG(2) << "Juste after updating "
1465-
<< "m_JointErrorValuesForWalking" << endl;
1463+
sotDEBUG(2) << "Juste after updating " << "m_JointErrorValuesForWalking"
1464+
<< endl;
14661465

14671466
sotDEBUG(1) << "lLeftFootPosition : " << lLeftFootPosition.x << " "
14681467
<< lLeftFootPosition.y << " " << lLeftFootPosition.z << " "

0 commit comments

Comments
 (0)