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
aseba was built failed on gcc-13:
/<<PKGBUILDDIR>>/aseba/common/msg/TargetDescription.h:88:17: error: ‘uint16_t’ does not name a type | 88 | uint16_t crc() const; | | ^~~~~~~~ | /<<PKGBUILDDIR>>/aseba/common/msg/TargetDescription.h:26:1: note: ‘uint16_t’ is defined in header ‘<cstdint>’; did you forget to ‘#include <cstdint>’? | 25 | #include <vector> | +++ |+#include <cstdint> | 26 | | /<<PKGBUILDDIR>>/aseba/common/msg/TargetDescription.cpp:26:18: error: no declaration matches ‘uint16_t Aseba::TargetDescription::crc() const’ | 26 | uint16_t TargetDescription::crc() const | | ^~~~~~~~~~~~~~~~~
The log is here.
I can confirm the patch can fix the issue:
--- a/aseba/common/msg/TargetDescription.h +++ b/aseba/common/msg/TargetDescription.h @@ -23,6 +23,7 @@ #include <map> #include <string> #include <vector> +#include <cstdint>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
aseba was built failed on gcc-13:
The log is here.
I can confirm the patch can fix the issue:
The text was updated successfully, but these errors were encountered: