From 7292f5c2f625050c8e0b22cdb32f121dc2058062 Mon Sep 17 00:00:00 2001 From: gns Date: Mon, 20 Oct 2025 21:08:32 +0800 Subject: [PATCH] Add missing stdint header Fix building with GCC13+. Co-authored-by: Levi Zim --- include/tfrt/support/forward_decls.h | 1 + include/tfrt/support/raw_coding.h | 1 + 2 files changed, 2 insertions(+) diff --git a/include/tfrt/support/forward_decls.h b/include/tfrt/support/forward_decls.h index c3a42504d96..18c8ecacfe2 100644 --- a/include/tfrt/support/forward_decls.h +++ b/include/tfrt/support/forward_decls.h @@ -21,6 +21,7 @@ #define TFRT_SUPPORT_FORWARD_DECLS_H_ #include +#include #include #include "llvm/Support/Casting.h" diff --git a/include/tfrt/support/raw_coding.h b/include/tfrt/support/raw_coding.h index ba7d6357de9..1ca6c74ce84 100644 --- a/include/tfrt/support/raw_coding.h +++ b/include/tfrt/support/raw_coding.h @@ -21,6 +21,7 @@ #ifndef TFRT_SUPPORT_RAW_CODING_H_ #define TFRT_SUPPORT_RAW_CODING_H_ +#include #include #include "tfrt/support/forward_decls.h"