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 #1365, fixup API headers for C++ #1371

Merged
merged 1 commit into from
Mar 2, 2023

Commits on Feb 24, 2023

  1. Fix nasa#1365, fixup API headers for C++

    Correct a few syntactical items that are valid C99 but not valid for
    C++03.  This includes use of the designated initializer, compound
    literals, variadic macros, and a trailing comma in enum declarations.
    
    Note this only matters for public API headers, as some users may need to
    include these directly from a c++ file.  For normal C source files, these
    are all compiled as C99 and thus the syntax is fine.
    jphickey committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    68599dd View commit details
    Browse the repository at this point in the history