Move missing header for libc++ after 1435be18d4

src/Hy3Node.cpp:571: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-08-12 04:00:33 +02:00
parent febcd88794
commit 72c00a7229
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,3 @@
#include <sstream>
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/plugins/PluginAPI.hpp>

View file

@ -1,3 +1,5 @@
#include <sstream>
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/plugins/PluginAPI.hpp>