File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/behaviortree_cpp/controls Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ namespace BT
32
32
class FallbackNode : public ControlNode
33
33
{
34
34
public:
35
- FallbackNode (const std::string& name, bool make_aynch = false );
35
+ FallbackNode (const std::string& name, bool make_asynch = false );
36
36
37
37
virtual ~FallbackNode () override = default ;
38
38
Original file line number Diff line number Diff line change 15
15
16
16
namespace BT
17
17
{
18
- FallbackNode::FallbackNode (const std::string& name, bool make_aynch )
18
+ FallbackNode::FallbackNode (const std::string& name, bool make_asynch )
19
19
: ControlNode::ControlNode(name, {})
20
20
, current_child_idx_(0 )
21
21
, all_skipped_(true )
22
- , asynch_(make_aynch )
22
+ , asynch_(make_asynch )
23
23
{
24
24
if (asynch_)
25
25
setRegistrationID (" AsyncFallback" );
You can’t perform that action at this time.
0 commit comments