Browse Source

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.
pull/175/head
Ondřej Budai 4 years ago
parent
commit
05826bfd5c
No known key found for this signature in database
GPG Key ID: 2EDC02DB69E9C992
  1. 1
      test/tempfile.h

1
test/tempfile.h

@ -20,6 +20,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <cstdint>
#include <vector>
class tempfile {

Loading…
Cancel
Save