From 08e7802493ecfba6dc4f0fd11bc4186e3680bdfb 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 75feb6c..6441e9a 100644 --- a/test/tempfile.h +++ b/test/tempfile.h @@ -21,6 +21,7 @@ #include #include #include +#include #include class tempfile {