-
Notifications
You must be signed in to change notification settings - Fork 277
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
Mark Component::Clone as const #1300
Conversation
Signed-off-by: Michael Carroll <[email protected]> Co-authored-by: Addisu Z. Taddese <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. It may be worth dropping a note on the migration guide.
Codecov Report
@@ Coverage Diff @@
## main #1300 +/- ##
==========================================
- Coverage 62.02% 62.01% -0.02%
==========================================
Files 276 276
Lines 23030 23020 -10
==========================================
- Hits 14285 14276 -9
+ Misses 8745 8744 -1
Continue to review full report at Codecov.
|
Signed-off-by: Michael Carroll <[email protected]>
|
@osrf-jenkins retest this please |
Split from #1249. Mark
Clone
method asconst
.This is likely not back-portable as it breaks API. Any components that implement a custom
Clone
will fail to compile. There are none in the mainign-gazebo
codebase, but there is a possibility of external users doing so.Signed-off-by: Michael Carroll [email protected]