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
You guys know what this means.
Constants aren't good enough. They don't constrain you to the range of values and you are able to set the field to any number you want.
// Current way
int16 FOO=0 int16 BAR=1 int16 value
// Proposed way
enum foo_bar { FOO, BAR }
The text was updated successfully, but these errors were encountered:
This issue was moved to ros2/rosidl#260
Sorry, something went wrong.
No branches or pull requests
You guys know what this means.
Constants aren't good enough. They don't constrain you to the range of values and you are able to set the field to any number you want.
// Current way
// Proposed way
The text was updated successfully, but these errors were encountered: