From 7d95971b1980474cc1a4875091db485c87e86702 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 14 Mar 2024 16:39:22 +0100 Subject: [PATCH] clientnb: missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit net/clientnb.cpp:117:10: error: ‘shared_ptr’ in namespace ‘std’ does not name a template type 117 | std::shared_ptr getWebSocket() | ^~~~~~~~~~ net/clientnb.cpp:38:1: note: ‘std::shared_ptr’ is defined in header ‘’; did you forget to ‘#include ’? IWYU agrees it's a missing include even if this builds for me by accident. Signed-off-by: Miklos Vajna Change-Id: I367ef3efcf2bdaf1b69c4bf21ef168e03807365c --- net/clientnb.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/net/clientnb.cpp b/net/clientnb.cpp index da275354c9..2b3e45238f 100644 --- a/net/clientnb.cpp +++ b/net/clientnb.cpp @@ -15,6 +15,7 @@ #include #include #include +#include #include #include