Skip to content
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

Fix up two different C problems. #129

Merged
merged 2 commits into from
Aug 2, 2024

Commits on Aug 2, 2024

  1. Fix up two different C problems.

    The first one was that the visibility_control file was
    marked as a C++ header, but was included in a C header.
    Avoid that by just making visibility_control a C header.
    
    The second problem is that, in C, a function with no
    arguments technically takes "any" arguments.  Fix
    ros_trace_compile_status() to have void arguments, which
    ensures that no arguments can be passed.
    
    Signed-off-by: Chris Lalancette <[email protected]>
    clalancette committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    7952cbc View commit details
    Browse the repository at this point in the history
  2. Fix linting.

    Signed-off-by: Chris Lalancette <[email protected]>
    clalancette committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    06abd59 View commit details
    Browse the repository at this point in the history