From d4d64ae73938754bbca6f47b0e3b948d1c994c45 Mon Sep 17 00:00:00 2001 From: will Date: Mon, 2 Mar 2026 20:10:24 +0000 Subject: [PATCH] rpc: add missing string_view include to server.h CRPCTable::help() takes std::string_view but server.h relies on transitive includes for it. Add the direct include (probably makes iwyu happier too?) --- src/rpc/server.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rpc/server.h b/src/rpc/server.h index 5355c320576..1c7396407a2 100644 --- a/src/rpc/server.h +++ b/src/rpc/server.h @@ -13,6 +13,7 @@ #include #include #include +#include #include