From fefd27043c3e76486d941b55c54d7a8454a06d65 Mon Sep 17 00:00:00 2001 From: cobalt-github-releaser-bot <95661244+cobalt-github-releaser-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 09:15:12 -0800 Subject: [PATCH] Cherry pick PR #1643: Add missing cstdint includes (#1655) Refer to the original PR: https://github.com/youtube/cobalt/pull/1643 --------- Co-authored-by: Andrew Savage --- third_party/angle/include/GLSLANG/ShaderVars.h | 1 + third_party/angle/src/common/angleutils.h | 1 + v8/src/base/logging.h | 1 + v8/src/base/macros.h | 1 + 4 files changed, 4 insertions(+) diff --git a/third_party/angle/include/GLSLANG/ShaderVars.h b/third_party/angle/include/GLSLANG/ShaderVars.h index f72b8c6faba8..b7dddf28f84d 100644 --- a/third_party/angle/include/GLSLANG/ShaderVars.h +++ b/third_party/angle/include/GLSLANG/ShaderVars.h @@ -11,6 +11,7 @@ #define GLSLANG_SHADERVARS_H_ #include +#include #include #include diff --git a/third_party/angle/src/common/angleutils.h b/third_party/angle/src/common/angleutils.h index 1cbb9686c7c6..701c324a54c0 100644 --- a/third_party/angle/src/common/angleutils.h +++ b/third_party/angle/src/common/angleutils.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include diff --git a/v8/src/base/logging.h b/v8/src/base/logging.h index 5275fdc6a6e1..edc8d702b6d9 100644 --- a/v8/src/base/logging.h +++ b/v8/src/base/logging.h @@ -5,6 +5,7 @@ #ifndef V8_BASE_LOGGING_H_ #define V8_BASE_LOGGING_H_ +#include #include #include #include diff --git a/v8/src/base/macros.h b/v8/src/base/macros.h index a265408d9108..2dba36fadb86 100644 --- a/v8/src/base/macros.h +++ b/v8/src/base/macros.h @@ -5,6 +5,7 @@ #ifndef V8_BASE_MACROS_H_ #define V8_BASE_MACROS_H_ +#include #include #include "src/base/compiler-specific.h"