mirror of
https://github.com/pdewacht/brlaser
synced 2024-12-26 15:38:20 +01:00
fix build under Fedora 38
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.
This commit is contained in:
parent
b93c4adf0c
commit
911a518f4e
@ -21,6 +21,7 @@
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
class tempfile {
|
||||
|
Loading…
Reference in New Issue
Block a user