Skip to content

Commit 05ef005

Browse files
unused
1 parent 283dac9 commit 05ef005

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/test/src/__support/CPP/integer_sequence_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ TEST(LlvmLibcIntegerSequencetTest, Basic) {
2323
(is_same_v<ULLSeq, make_integer_sequence<unsigned long long, 4>>));
2424
}
2525

26-
template <typename T, T... Ts> bool checkArray(integer_sequence<T, Ts...> seq) {
26+
template <typename T, T... Ts>
27+
bool checkArray(integer_sequence<T, Ts...> /*seq*/) {
2728
T arr[sizeof...(Ts)]{Ts...};
2829

2930
for (T i = 0; i < static_cast<T>(sizeof...(Ts)); i++)

0 commit comments

Comments
 (0)