From 001020402675294c82127943f6b7777ab94f411e Mon Sep 17 00:00:00 2001 From: Andrew Savage Date: Wed, 27 Sep 2023 13:05:13 -0700 Subject: [PATCH] Add missing cstdint includes (#1643) --- third_party/angle/include/GLSLANG/ShaderVars.h | 1 + third_party/angle/src/common/angleutils.h | 1 + third_party/crashpad/util/misc/reinterpret_bytes.cc | 1 + third_party/v8/src/base/logging.h | 1 + third_party/v8/src/base/macros.h | 1 + third_party/v8/src/inspector/v8-string-conversions.h | 1 + 6 files changed, 6 insertions(+) diff --git a/third_party/angle/include/GLSLANG/ShaderVars.h b/third_party/angle/include/GLSLANG/ShaderVars.h index 52f6ad077556..5d2d14683604 100644 --- a/third_party/angle/include/GLSLANG/ShaderVars.h +++ b/third_party/angle/include/GLSLANG/ShaderVars.h @@ -12,6 +12,7 @@ #include #include +#include #include #include diff --git a/third_party/angle/src/common/angleutils.h b/third_party/angle/src/common/angleutils.h index 3a1391e29b72..c8d36f551861 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/third_party/crashpad/util/misc/reinterpret_bytes.cc b/third_party/crashpad/util/misc/reinterpret_bytes.cc index 65ec33f348ec..3fee722dea39 100644 --- a/third_party/crashpad/util/misc/reinterpret_bytes.cc +++ b/third_party/crashpad/util/misc/reinterpret_bytes.cc @@ -17,6 +17,7 @@ #include #include +#include #include "base/logging.h" diff --git a/third_party/v8/src/base/logging.h b/third_party/v8/src/base/logging.h index fe39f988225e..dbe130581cb1 100644 --- a/third_party/v8/src/base/logging.h +++ b/third_party/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/third_party/v8/src/base/macros.h b/third_party/v8/src/base/macros.h index 515a9e3cf2ab..a7cd7c00f2ee 100644 --- a/third_party/v8/src/base/macros.h +++ b/third_party/v8/src/base/macros.h @@ -5,6 +5,7 @@ #ifndef V8_BASE_MACROS_H_ #define V8_BASE_MACROS_H_ +#include #include #include diff --git a/third_party/v8/src/inspector/v8-string-conversions.h b/third_party/v8/src/inspector/v8-string-conversions.h index c1d69c18f0a8..eb33c6816a58 100644 --- a/third_party/v8/src/inspector/v8-string-conversions.h +++ b/third_party/v8/src/inspector/v8-string-conversions.h @@ -5,6 +5,7 @@ #ifndef V8_INSPECTOR_V8_STRING_CONVERSIONS_H_ #define V8_INSPECTOR_V8_STRING_CONVERSIONS_H_ +#include #include // Conversion routines between UT8 and UTF16, used by string-16.{h,cc}. You may