Skip to content

Commit a443582

Browse files
committed
Formatting
1 parent efc849d commit a443582

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libcxx/test/libcxx/containers/sequences/forwardlist/assert.pass.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ int main(int, char**) {
3333
const auto& const_c = c;
3434
c.push_front(1);
3535

36-
(void)c.front(); // Check that there's no assertion on valid access.
37-
(void)const_c.front(); // Check that there's no assertion on valid access.
36+
// Check that there's no assertion on valid access.
37+
(void)c.front();
38+
(void)const_c.front();
39+
3840
c.pop_front();
3941
TEST_LIBCPP_ASSERT_FAILURE(c.pop_front(), "forward_list::pop_front called on an empty list");
4042
TEST_LIBCPP_ASSERT_FAILURE(c.front(), "forward_list::front called on an empty list");

0 commit comments

Comments
 (0)