From 2670b8f7724e94020f21fe81483e69d73e1337cf Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Thu, 1 May 2025 18:48:13 +0000 Subject: [PATCH] hyprpm: add missing include for libc++ after 858c0e26d193 (#10234) hyprpm/src/core/DataState.cpp:80:23: error: implicit instantiation of undefined template 'std::basic_stringstream' 80 | std::stringstream ss; | ^ hyprpm/src/core/DataState.cpp:149:23: error: implicit instantiation of undefined template 'std::basic_stringstream' 149 | std::stringstream ss; | ^ hyprpm/src/core/DataState.cpp:229:31: error: implicit instantiation of undefined template 'std::basic_stringstream' 229 | std::stringstream ss; | ^ /usr/include/c++/v1/__fwd/sstream.h:30:28: note: template is declared here 30 | class _LIBCPP_TEMPLATE_VIS basic_stringstream; | ^ --- hyprpm/src/core/DataState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprpm/src/core/DataState.cpp b/hyprpm/src/core/DataState.cpp index d8a9477ea..3e7ae399d 100644 --- a/hyprpm/src/core/DataState.cpp +++ b/hyprpm/src/core/DataState.cpp @@ -2,7 +2,7 @@ #include #include #include -#include +#include #include "PluginManager.hpp" #include "../helpers/Die.hpp" #include "../helpers/Sys.hpp"