This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 3da3a0faf2038b702bc031b3459e64894021faa8 Author: Brian Neradt <[email protected]> AuthorDate: Fri May 22 13:09:51 2026 -0500 GCC 16: Regex header integer includes (#13193) GCC 16 no longer exposes fixed-width integer types through the current transitive include path. Include cstdint directly so Regex.h remains self-contained. (cherry picked from commit e989d54caa54f1985e6f07d9d7ae47a0b5635e1d) --- include/tsutil/Regex.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/tsutil/Regex.h b/include/tsutil/Regex.h index 7daaf5c453..58ff856337 100644 --- a/include/tsutil/Regex.h +++ b/include/tsutil/Regex.h @@ -23,10 +23,11 @@ #pragma once +#include <cstdint> +#include <memory> #include <string_view> #include <string> #include <vector> -#include <memory> /// @brief Match flags for regular expression evaluation. ///
