Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7a243dc

Browse files
author
Davide Faconti
committed
cosmetic
1 parent bd27aa6 commit 7a243dc

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

include/behaviortree_cpp/controls/reactive_fallback.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ namespace BT
2828
*
2929
* If all the children fail, than this node returns FAILURE.
3030
*
31-
* IMPORTANT: to work properly, this node should not have more than a single
32-
* asynchronous child.
31+
* IMPORTANT: to work properly, this node should not have more than
32+
* a single asynchronous child.
3333
*
3434
*/
3535
class ReactiveFallback : public ControlNode
@@ -39,8 +39,6 @@ class ReactiveFallback : public ControlNode
3939
ReactiveFallback(const std::string& name):
4040
ControlNode(name, {}){}
4141

42-
~ReactiveFallback() = default;
43-
4442
private:
4543

4644
virtual BT::NodeStatus tick() override;

include/behaviortree_cpp/controls/reactive_sequence.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ class ReactiveSequence : public ControlNode
3838
ReactiveSequence(const std::string& name):
3939
ControlNode(name, {}) {}
4040

41-
~ReactiveSequence() = default;
42-
4341
private:
4442

4543
virtual BT::NodeStatus tick() override;

0 commit comments

Comments
 (0)