Skip to content

Commit 94909a3

Browse files
committed
fix formatting issues
1 parent b9781f4 commit 94909a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/test/std/utilities/intseq/intseq.binding/structured_binding.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222

2323
template <typename...>
2424
void test_structured_bindings() {
25-
constexpr static auto [...empty] = std::make_index_sequence<0>();
25+
constexpr static auto [... empty] = std::make_index_sequence<0>();
2626
static_assert(sizeof...(empty) == 0);
2727

28-
constexpr static auto [...size4] = std::make_index_sequence<4>();
28+
constexpr static auto [... size4] = std::make_index_sequence<4>();
2929
static_assert(sizeof...(size4) == 4);
3030

3131
// these cannot yet be static_asserts

0 commit comments

Comments
 (0)