Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c6350 commit 9c9ff1aCopy full SHA for 9c9ff1a
include/behaviortree_cpp/bt_factory.h
@@ -196,7 +196,7 @@ class BehaviorTreeFactory
196
template <typename T>
197
NodeBuilder getBuilderImpl(typename std::enable_if<!has_default_constructor<T>::value && has_params_constructor<T>::value >::type* = nullptr)
198
{
199
- return [this](const std::string& name, const NodeParameters& params)
+ return [](const std::string& name, const NodeParameters& params)
200
201
return std::unique_ptr<TreeNode>(new T(name, params));
202
};
0 commit comments