Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry pick PR #1643: Add missing cstdint includes #1654

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions third_party/angle/include/GLSLANG/ShaderVars.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

#include <algorithm>
#include <array>
#include <cstdint>
#include <string>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions third_party/angle/src/common/angleutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <climits>
#include <cstdarg>
#include <cstddef>
#include <cstdint>
#include <set>
#include <sstream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions third_party/crashpad/util/misc/reinterpret_bytes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <string.h>

#include <algorithm>
#include <cstdint>

#include "base/logging.h"

Expand Down
1 change: 1 addition & 0 deletions third_party/v8/src/base/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef V8_BASE_LOGGING_H_
#define V8_BASE_LOGGING_H_

#include <cstdint>
#include <cstring>
#include <sstream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions third_party/v8/src/base/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef V8_BASE_MACROS_H_
#define V8_BASE_MACROS_H_

#include <cstdint>
#include <limits>
#include <type_traits>

Expand Down
1 change: 1 addition & 0 deletions third_party/v8/src/inspector/v8-string-conversions.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef V8_INSPECTOR_V8_STRING_CONVERSIONS_H_
#define V8_INSPECTOR_V8_STRING_CONVERSIONS_H_

#include <cstdint>
#include <string>

// Conversion routines between UT8 and UTF16, used by string-16.{h,cc}. You may
Expand Down
Loading