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
As said in #153, some defined function in the internal namespace are not inlined in joint_trajectory_controller_impl.h.
This cause a "duplicate definition" issue when trying to link a library that include joint_trajectory_controller.h in two compile units.
A simple fix would be to move those funciton in an anonymous namespace, or add the inline or static qualifiers.
inline
static
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As said in #153, some defined function in the internal namespace are not inlined in joint_trajectory_controller_impl.h.
This cause a "duplicate definition" issue when trying to link a library that include joint_trajectory_controller.h in two compile units.
A simple fix would be to move those funciton in an anonymous namespace, or add the
inline
orstatic
qualifiers.The text was updated successfully, but these errors were encountered: