Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is returning a local instance of BehaviorTreeFactory by value from a function disallowed ? #937

Open
vincent-hui opened this issue Feb 19, 2025 · 1 comment

Comments

@vincent-hui
Copy link
Contributor

vincent-hui commented 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

#include "behaviortree_cpp/bt_factory.h"

inline BT::BehaviorTreeFactory factoryOfBtFactory() {
  BT::BehaviorTreeFactory factory;
  return factory;
}

main.cpp

#include "myheader.h"

int main(){
return 0;
}

Compilation error

/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,
      |                       ^~~~~~~~~~~
@vincent-hui 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 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
@vincent-hui
Copy link
Contributor Author

Hi @facontidavide , would you mind letting me why you made e7a3991 ? Did you run into any issues ? Would you mind reverting e7a3991 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant