This is an automated email from the ASF dual-hosted git repository.
bryancall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new e989d54caa GCC 16: Regex header integer includes (#13193)
e989d54caa is described below
commit e989d54caa54f1985e6f07d9d7ae47a0b5635e1d
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.
---
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.
///