Add missing header for libc++

src/Hy3Layout.cpp:1368:20: error: implicit instantiation of undefined template 'std::basic_stringstream<char>'
        std::stringstream buf;
                          ^
/usr/include/c++/v1/iosfwd:134:32: note: template is declared here
    class _LIBCPP_TEMPLATE_VIS basic_stringstream;
                               ^
This commit is contained in:
Jan Beich 2023-05-16 18:21:12 +00:00
parent 4c000cc03c
commit 5410ff18f9

View file

@ -5,6 +5,8 @@
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/plugins/PluginAPI.hpp>
#include <sstream>
void errorNotif() {
HyprlandAPI::addNotificationV2(PHANDLE, {
{"text", "Something has gone very wrong. Check the log for details."},