-
Notifications
You must be signed in to change notification settings - Fork 111
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
Special characters in group name break build #96
Comments
Thanks @orzechow for reporting it.
Supporting special characters may be challenging as this would (maybe there is an alternative I'm not seeing) require stripping or substituting such characters and could en up in different groups in the same .cfg to collide as they would result in the same class name.
This sounds good to me. As this would likely break API we would need to make this feature available in ROS Melodic and later.
See #97 for a a possible implementation of the suggested solution for existing ROS distributions |
Special characters like "(" in the parameter group name break the build, but might be desirable to put a short description in brackets.
Example:
generates C++ classes named
FIELD_OF_VIEW_(RELATIVE_TO_VEHICLE_FRAME)
, which are obviously bad syntax.To serve the need for group descriptions (that show up in
rqt_reconfigure
for example), I see two possiblities:add_group
The text was updated successfully, but these errors were encountered: