From 45518acbb386c7e54ba9189b4350e57cf574e5ac Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Fri, 23 Aug 2024 10:00:23 -0700 Subject: [PATCH] Fix incorrect std::array sizes in Target.cpp (#8396) --- src/Target.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Target.cpp b/src/Target.cpp index 9270033f35e9..8d13e1e79677 100644 --- a/src/Target.cpp +++ b/src/Target.cpp @@ -1549,7 +1549,7 @@ bool Target::get_runtime_compatible_target(const Target &other, Target &result) // clang-format on // clang-format off - const std::array intersection_features = {{ + const std::array intersection_features = {{ ARMv7s, AVX, AVX2, @@ -1568,7 +1568,7 @@ bool Target::get_runtime_compatible_target(const Target &other, Target &result) // clang-format on // clang-format off - const std::array matching_features = {{ + const std::array matching_features = {{ ASAN, Debug, HexagonDma,