From 34efe230c2ac402faf4a15ca1d048a435e359358 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 1 Oct 2024 09:08:26 +0000 Subject: [PATCH] core: add missing header for libc++ after 5a95d8512b3e (#66) libhyprcursor/hyprcursor.cpp:23:27: error: implicit instantiation of undefined template 'std::basic_stringstream' 23 | std::stringstream envXdgStream(envXdgData); | ^ /usr/include/c++/v1/__fwd/sstream.h:29:28: note: template is declared here 29 | class _LIBCPP_TEMPLATE_VIS basic_stringstream; | ^ --- libhyprcursor/hyprcursor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libhyprcursor/hyprcursor.cpp b/libhyprcursor/hyprcursor.cpp index 3a83a26..f7fb82c 100644 --- a/libhyprcursor/hyprcursor.cpp +++ b/libhyprcursor/hyprcursor.cpp @@ -2,6 +2,7 @@ #include "internalSharedTypes.hpp" #include "internalDefines.hpp" #include +#include #include #include #include