Skip to content

Commit 09a42a8

Browse files
author
Marcos Slomp
committed
fixing std::array length
1 parent fec503b commit 09a42a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Target.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ bool Target::get_runtime_compatible_target(const Target &other, Target &result)
15941594
// clang-format on
15951595

15961596
// clang-format off
1597-
constexpr std::array<Feature, 14> intersection_features = {{
1597+
constexpr std::array<Feature, 16> intersection_features = {{
15981598
ARMv7s,
15991599
AVX,
16001600
AVX2,
@@ -1615,7 +1615,7 @@ bool Target::get_runtime_compatible_target(const Target &other, Target &result)
16151615
// clang-format on
16161616

16171617
// clang-format off
1618-
constexpr std::array<Feature, 10> matching_features = {{
1618+
constexpr std::array<Feature, 11> matching_features = {{
16191619
ASAN,
16201620
Debug,
16211621
EnableBacktraces,

0 commit comments

Comments
 (0)