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
Required Info:
git checkout 40f4c38103f4329694c53d9b4864cb6580c380d4
// look at actual assembly of Observation & operator=(const Observation &) = default; // observation.hpp:65
It's expected to be a shortcut for explicitly defined copy constructor
It just copies every fields of the class. No new is called.
new
Pull request is on the way. main branch has similar issues, but I can't make a pull request for that right now.
main
See this if you doubt that default assignments don't call constructors.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Required Info:
git checkout 40f4c38103f4329694c53d9b4864cb6580c380d4
(current head of foxy-devel)Steps to reproduce issue
Expected behavior
It's expected to be a shortcut for explicitly defined copy constructor
Actual behavior
It just copies every fields of the class. No
new
is called.Additional information
Pull request is on the way.
main
branch has similar issues, but I can't make a pull request for that right now.See this if you doubt that default assignments don't call constructors.
The text was updated successfully, but these errors were encountered: