From 5410ff18f931498335836054a809f84d8a3e81db Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 16 May 2023 18:21:12 +0000 Subject: [PATCH] Add missing header for libc++ src/Hy3Layout.cpp:1368:20: error: implicit instantiation of undefined template 'std::basic_stringstream' std::stringstream buf; ^ /usr/include/c++/v1/iosfwd:134:32: note: template is declared here class _LIBCPP_TEMPLATE_VIS basic_stringstream; ^ --- src/Hy3Layout.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Hy3Layout.cpp b/src/Hy3Layout.cpp index 68e04a8..33fc0b6 100644 --- a/src/Hy3Layout.cpp +++ b/src/Hy3Layout.cpp @@ -5,6 +5,8 @@ #include #include +#include + void errorNotif() { HyprlandAPI::addNotificationV2(PHANDLE, { {"text", "Something has gone very wrong. Check the log for details."},