From 3b52f6740903f9063d9d9ee48443eafe604e69a2 Mon Sep 17 00:00:00 2001 From: Michael Vandeberg Date: Fri, 15 May 2026 14:14:42 -0600 Subject: [PATCH] fix(umbrella): include connect.hpp and host_name.hpp Both headers are standalone public APIs not reached transitively from anything else in the umbrella, so users who include only could not call corosio::connect or corosio::host_name without an extra include. --- include/boost/corosio.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/corosio.hpp b/include/boost/corosio.hpp index f4d4eea7..9a130450 100644 --- a/include/boost/corosio.hpp +++ b/include/boost/corosio.hpp @@ -12,8 +12,10 @@ #include #include +#include #include #include +#include #include #include #include