From 5b6ceba996f08e2502737eec14f291ac8d46a5bc Mon Sep 17 00:00:00 2001 From: Jerome Jiang Date: Tue, 3 Oct 2023 10:14:43 -0400 Subject: [PATCH] Include vpx_config.h for macros Clear some clang-tidy complaints Change-Id: I6690428d336c81709befd19a33e11c1367275df3 --- vpx_ports/aarch32_cpudetect.c | 1 + vpx_ports/aarch64_cpudetect.c | 1 + 2 files changed, 2 insertions(+) diff --git a/vpx_ports/aarch32_cpudetect.c b/vpx_ports/aarch32_cpudetect.c index 48bdc70..639f4ff 100644 --- a/vpx_ports/aarch32_cpudetect.c +++ b/vpx_ports/aarch32_cpudetect.c @@ -9,6 +9,7 @@ */ // Feature detection code for Armv7-A / AArch32. +#include "./vpx_config.h" #include "arm_cpudetect.h" #if !CONFIG_RUNTIME_CPU_DETECT diff --git a/vpx_ports/aarch64_cpudetect.c b/vpx_ports/aarch64_cpudetect.c index dad081c..ac68f44 100644 --- a/vpx_ports/aarch64_cpudetect.c +++ b/vpx_ports/aarch64_cpudetect.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vpx_config.h" #include "arm_cpudetect.h" #if defined(__APPLE__) -- 2.7.4