We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm using kinetic with Ubuntu 16.04 and compiling the nodelet demux header with -std=c++11 in https://github.com/lucasw/nodelet_demo (lucasw/nodelet_demo#1)
(The pcl demux also errors out on load, but maybe for different reasons?)
The crash happens at:
*pubs_output_[d] = private_nh_.template advertise<T> ((std::string)(output_topics_[d]), 1);
and the fix is:
pubs_output_[d] = boost::make_shared<ros::Publisher>(private_nh_.template advertise<T> ((std::string)(output_topics_[d]), 1));
I can provide a PR.
The text was updated successfully, but these errors were encountered:
Fix for ros#78
089f99b
This tests both ros#79 and ros#78 (if the nodelet crashes immediately…
24e47d3
… the test should fail)
Fix for #78 (#80)
c3ba0c0
No branches or pull requests
I'm using kinetic with Ubuntu 16.04 and compiling the nodelet demux header with -std=c++11 in https://github.com/lucasw/nodelet_demo (lucasw/nodelet_demo#1)
(The pcl demux also errors out on load, but maybe for different reasons?)
The crash happens at:
and the fix is:
I can provide a PR.
The text was updated successfully, but these errors were encountered: