Skip to content

Commit 2e8b13e

Browse files
committed
Lint
Signed-off-by: redvinaa <[email protected]>
1 parent 7fc24c5 commit 2e8b13e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

include/behaviortree_cpp/controls/sequence_node.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ namespace BT
3434
class SequenceNode : public ControlNode
3535
{
3636
public:
37-
SequenceNode(
38-
const std::string& name, bool make_async = false,
39-
const NodeConfiguration& conf = NodeConfiguration());
37+
SequenceNode(const std::string& name, bool make_async = false,
38+
const NodeConfiguration& conf = NodeConfiguration());
4039

4140
virtual ~SequenceNode() override = default;
4241

src/controls/sequence_node.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
namespace BT
1717
{
18-
SequenceNode::SequenceNode(const std::string& name, bool make_async, const NodeConfiguration& conf)
18+
SequenceNode::SequenceNode(const std::string& name, bool make_async,
19+
const NodeConfiguration& conf)
1920
: ControlNode::ControlNode(name, conf), current_child_idx_(0), asynch_(make_async)
2021
{
2122
if(asynch_)

0 commit comments

Comments
 (0)