You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
This commit e7a3991 makes user code compilation fail if a function that returns a local instance of BehaviorTreeFactory by value is defined.
/usr/local/include/c++/15.0.1/bits/unique_ptr.h: In instantiation of ‘constexpr void std::default_delete<_Tp>::operator()(_Tp*) const [with _Tp = BT::BehaviorTreeFactory::PImpl]’:
/usr/local/include/c++/15.0.1/bits/unique_ptr.h:399:17: required from ‘constexpr std::unique_ptr<_Tp, _Dp>::~unique_ptr() [with _Tp = BT::BehaviorTreeFactory::PImpl; _Dp = std::default_delete<BT::BehaviorTreeFactory::PImpl>]’
399 | get_deleter()(std::move(__ptr));
| ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/home/vincent/workspace/BehaviorTree.CPP/include/behaviortree_cpp/bt_factory.h:218:3: required from here
218 | BehaviorTreeFactory(BehaviorTreeFactory&& other) noexcept = default;
| ^~~~~~~~~~~~~~~~~~~
/usr/local/include/c++/15.0.1/bits/unique_ptr.h:91:23: error: invalid application of ‘sizeof’ to incomplete type ‘BT::BehaviorTreeFactory::PImpl’
91 | static_assert(sizeof(_Tp)>0,
| ^~~~~~~~~~~
The text was updated successfully, but these errors were encountered:
vincent-hui
changed the title
Is returning a local instance of BehaviorTreeFactory from an inline function defined in a header not allowed ?
Is returning a local instance of BehaviorTreeFactory from an inline function defined in a header disallowed ?
Feb 19, 2025
vincent-hui
changed the title
Is returning a local instance of BehaviorTreeFactory from an inline function defined in a header disallowed ?
Is returning a local instance of BehaviorTreeFactory by value from a function disallowed ?
Feb 19, 2025
Describe the bug
This commit e7a3991 makes user code compilation fail if a function that returns a local instance of BehaviorTreeFactory by value is defined.
How to Reproduce*
myheader.h
main.cpp
Compilation error
The text was updated successfully, but these errors were encountered: