Skip to content

Commit

Permalink
Fix -Wunguarded-availability warnings.
Browse files Browse the repository at this point in the history
Change-Id: I400130d67acea47158b9ba4f5703c7e9bc2cbb79
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/4811217
Reviewed-by: Joshua Peraza <jperaza@chromium.org>
  • Loading branch information
Ivan Penkov committed Aug 24, 2023
1 parent 922d49b commit e35d1d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/mac/arch_utilities.cc
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ ArchInfo GetLocalArchInfo(void) {
#ifdef __APPLE__

std::optional<ArchInfo> GetArchInfoFromName(const char* arch_name) {
if (__builtin_available(macOS 13.0, iOS 16.0, *)) {
if (__builtin_available(macOS 13.0, iOS 16.0, tvOS 16.0, *)) {
cpu_type_t type;
cpu_subtype_t subtype;
if (macho_cpu_type_for_arch_name(arch_name, &type, &subtype)) {
Expand All @@ -114,7 +114,7 @@ std::optional<ArchInfo> GetArchInfoFromName(const char* arch_name) {
}

const char* GetNameFromCPUType(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) {
if (__builtin_available(macOS 13.0, iOS 16.0, *)) {
if (__builtin_available(macOS 13.0, iOS 16.0, tvOS 16.0, *)) {
const char* name = macho_arch_name_for_cpu_type(cpu_type, cpu_subtype);
if (name) {
return name;
Expand Down

0 comments on commit e35d1d0

Please sign in to comment.