From 87e11418a8f3771bb3d8bd3e9692c16d5b873c6a Mon Sep 17 00:00:00 2001 From: crosstyan Date: Thu, 16 Jul 2026 00:49:40 +0800 Subject: [PATCH] refactor(utils): include / used by as_bytes The as_bytes overloads use std::byte/std::size_t () and std::is_trivially_copyable_v (); after the earlier include trim these compiled only via transitive includes on the fleet's libstdc++. Include them directly (include-what-you-use). --- inc/app_utils.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inc/app_utils.hpp b/inc/app_utils.hpp index 844f6b1..9b8ce58 100644 --- a/inc/app_utils.hpp +++ b/inc/app_utils.hpp @@ -1,7 +1,9 @@ #pragma once +#include #include #include +#include #include #include #ifdef __cpp_lib_format