Skip to content

Commit

Permalink
fix build under Fedora 38
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ondrejbudai authored and QORTEC committed Mar 14, 2023
1 parent c69a7a5 commit 08e7802
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/tempfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <cstdint>
#include <vector>

class tempfile {
Expand Down

0 comments on commit 08e7802

Please sign in to comment.