Kmer-File-Format / kff-cpp-api

A C++ API to read and write kff files
GNU Affero General Public License v3.0
9 stars 9 forks source link

Add cstdint include needed for gcc 13.2 #18

Closed glennhickey closed 2 months ago

glennhickey commented 2 months ago

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.