From fcb6f936ea8b39ec42f5979e55c7aa4a060d2f30 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Fri, 9 May 2025 01:42:19 +0000 Subject: [PATCH] hyprpm: add missing include for libc++ after 1c530cbc66db (#10344) hyprpm/src/helpers/Sys.cpp:24:24: error: implicit instantiation of undefined temp late 'std::basic_ostringstream' 24 | std::ostringstream oss; | ^ /usr/include/c++/v1/__fwd/sstream.h:27:28: note: template is declared here 27 | class _LIBCPP_TEMPLATE_VIS basic_ostringstream; | ^ --- hyprpm/src/helpers/Sys.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hyprpm/src/helpers/Sys.cpp b/hyprpm/src/helpers/Sys.cpp index a5876b9d0..58741caf6 100644 --- a/hyprpm/src/helpers/Sys.cpp +++ b/hyprpm/src/helpers/Sys.cpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include