This is an automated email from the ASF dual-hosted git repository.

cmcfarlen pushed a commit to branch 10.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit a5d1d23103add9b101fa6d236ffe581d834d6bd8
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 cc5260c24f..3295712bda 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.
 ///

Reply via email to