From 6e0a09e90a789210a2d1df14b3034df15a3407c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cevdet=20Samed=20=C3=87ET=C4=B0N?= <138728140+DotChas@users.noreply.github.com> Date: Tue, 21 Apr 2026 20:28:26 +0300 Subject: [PATCH] Add missing standard library includes to screen.h Update screen.h by explicitly including the headers required for the types used: - for uint64_t - for std::map - for std::shared_ptr - for std::string --- src/display/screen.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/display/screen.h b/src/display/screen.h index f65817a..4b0c291 100644 --- a/src/display/screen.h +++ b/src/display/screen.h @@ -28,6 +28,10 @@ #define NCURSES_OK 0 #include +#include +#include +#include +#include #include #include