From 4a7fbefdff330f06d5698a1e60ce893225cd389e Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Sat, 6 Apr 2024 16:03:49 -0700 Subject: Fix large copies with url_view and segments_view Despite these objects being called "view" they are still relatively large, as clang-tidy correctly flags, and we ignore. Change all function uses to capture by: const boost::urls::url_view_base& Which is the base class of all boost URL types, and any class (url, url_view, etc) is convertible to that base. Change-Id: I8ee2ea3f4cfba38331303a7e4eb520a2b6f8ba92 Signed-off-by: Ed Tanous --- include/event_service_store.hpp | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/event_service_store.hpp b/include/event_service_store.hpp index 522227b61c..f03bd7908f 100644 --- a/include/event_service_store.hpp +++ b/include/event_service_store.hpp @@ -4,6 +4,7 @@ #include #include #include +#include #include namespace persistent_data -- cgit v1.2.3