From 05826bfd5c3a2c1360031b4e083132d54fcfbdd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Sat, 2 Apr 2022 23:38:34 +0200 Subject: [PATCH] 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. --- test/tempfile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tempfile.h b/test/tempfile.h index f83e306..9505734 100644 --- a/test/tempfile.h +++ b/test/tempfile.h @@ -20,6 +20,7 @@ #include #include +#include #include class tempfile {