This project won't build on Ubuntu 22.04.1 / GCC 13.2 due tons of errors of the form:
/home/hickey/dev/kff-cpp-api/main.cpp:202:1: note: ‘uint8_t’ is defined in header ‘’; did you forget to ‘#include ’?
/home/hickey/dev/kff-cpp-api/main.cpp:216:6: error: variable or field ‘uint8_unpacking’ declared void
216 | void uint8_unpacking(uint8_t packed, char * decoded, size_t size);
This PR resolves this by adding the missing <cstdint> include.
This project won't build on Ubuntu 22.04.1 / GCC 13.2 due tons of errors of the form:
This PR resolves this by adding the missing
<cstdint>
include.