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

Bugfix: Replace byte array with std::array to allow zero-sized arrays #43

Merged
merged 1 commit into from
Sep 16, 2020

Commits on Sep 16, 2020

  1. Replacing uint8_t[TEMPLATE_PARAM] with std::array<uint8_t, TEMPLATE_P…

    …ARAM> since ISO C++ forbids 0-sized arrays (which can occur when you've got UAVCAN messages with no payload). Fortunately std::array can exist with a size of 0.
    aentinger committed Sep 16, 2020
    Configuration menu
    Copy the full SHA
    f1b18d9 View commit details
    Browse the repository at this point in the history