From 72c00a72293fcf2128ec2567ee5630b7998dd5b3 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Sat, 12 Aug 2023 04:00:33 +0200 Subject: [PATCH] Move missing header for libc++ after 1435be18d410 src/Hy3Node.cpp:571: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 -- src/Hy3Node.cpp | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Hy3Layout.cpp b/src/Hy3Layout.cpp index e18d031..e1e0e58 100644 --- a/src/Hy3Layout.cpp +++ b/src/Hy3Layout.cpp @@ -1,5 +1,3 @@ -#include - #include #include diff --git a/src/Hy3Node.cpp b/src/Hy3Node.cpp index 0ce830a..327fac7 100644 --- a/src/Hy3Node.cpp +++ b/src/Hy3Node.cpp @@ -1,3 +1,5 @@ +#include + #include #include