Closed ondrejbudai closed 1 year ago
Building brlaser under Fedora 38 gives the following error in test/tempfile.h: error: 'uint8_t' was not declared in this scope
This commit fixes it by explicitly including cstdin in the file, so uint8_t is correctly defined there.
cstdin
uint8_t
Thanks. I think <cstdint> is technically only required to provide std::uint8_t, but the code uses uint8_t. So I added an include for <stdint.h> instead.
<cstdint>
std::uint8_t
<stdint.h>
Building brlaser under Fedora 38 gives the following error in test/tempfile.h: error: 'uint8_t' was not declared in this scope
This commit fixes it by explicitly including
cstdin
in the file, souint8_t
is correctly defined there.