File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
include/sot/pattern-generator Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ class SOTNEXTSTEP_EXPORT NextStep : public Entity {
176
176
virtual void starter (const int &timeCurr);
177
177
virtual void stoper (const int &timeCurr);
178
178
179
- virtual void introductionCallBack (const int &){};
179
+ virtual void introductionCallBack (const int &) {};
180
180
181
181
int &triggerCall (int &dummy, int timeCurr);
182
182
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class StepComputer {
54
54
public: // Methods
55
55
virtual void changeFirstStep (StepQueue &queue, int timeCurr) = 0;
56
56
virtual void nextStep (StepQueue &queue, int timeCurr) = 0;
57
- virtual ~StepComputer (){};
57
+ virtual ~StepComputer () {};
58
58
};
59
59
60
60
} // namespace sot
Original file line number Diff line number Diff line change @@ -1754,14 +1754,13 @@ void PatternGenerator::initCommands(void) {
1754
1754
addCommand (
1755
1755
" buildModel" ,
1756
1756
makeCommandVoid0 (
1757
- *this , (void (PatternGenerator::*)(void )) & PatternGenerator::buildPGI,
1757
+ *this , (void (PatternGenerator::*)(void ))& PatternGenerator::buildPGI,
1758
1758
docCommandVoid0 (" From the files, parse and build the robot model and"
1759
1759
" the Walking Pattern Generator." )));
1760
1760
addCommand (
1761
1761
" initState" ,
1762
1762
makeCommandVoid0 (
1763
- *this ,
1764
- (void (PatternGenerator::*)(void )) & PatternGenerator::InitState,
1763
+ *this , (void (PatternGenerator::*)(void ))&PatternGenerator::InitState,
1765
1764
docCommandVoid0 (" From q and model, compute the initial geometry." )));
1766
1765
1767
1766
addCommand (
@@ -1828,7 +1827,7 @@ void PatternGenerator::initCommands(void) {
1828
1827
addCommand (
1829
1828
" debug" ,
1830
1829
makeCommandVoid0 (
1831
- *this , (void (PatternGenerator::*)(void )) & PatternGenerator::debug,
1830
+ *this , (void (PatternGenerator::*)(void ))& PatternGenerator::debug,
1832
1831
docCommandVoid0 (" Launch a debug command." )));
1833
1832
}
1834
1833
You can’t perform that action at this time.
0 commit comments