Skip to content

Commit 7494b33

Browse files
clang-format
1 parent 129f6d6 commit 7494b33

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

libcxx/test/std/containers/sequences/deque/deque.cons/move_assign.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "min_allocator.h"
2323

2424
TEST_CONSTEXPR_CXX26 bool test() {
25-
{
25+
{
2626
int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45};
2727
int* an = ab + sizeof(ab) / sizeof(ab[0]);
2828
typedef test_allocator<MoveOnly> A;

libcxx/test/std/containers/sequences/deque/deque.cons/move_noexcept.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct some_alloc {
3030
};
3131

3232
TEST_CONSTEXPR_CXX26 bool test() {
33-
#if defined(_LIBCPP_VERSION)
33+
#if defined(_LIBCPP_VERSION)
3434
{
3535
typedef std::deque<MoveOnly> C;
3636
static_assert(std::is_nothrow_move_constructible<C>::value, "");

libcxx/test/std/containers/sequences/deque/deque.cons/op_equal.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void test(const C& x) {
2727
}
2828

2929
TEST_CONSTEXPR_CXX26 bool test() {
30-
{
30+
{
3131
int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45};
3232
int* an = ab + sizeof(ab) / sizeof(ab[0]);
3333
test(std::deque<int>(ab, an));

libcxx/test/std/containers/sequences/deque/deque.cons/op_equal_initializer_list.pass.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ TEST_CONSTEXPR_CXX26 bool test() {
4343
return true;
4444
}
4545

46-
4746
int main(int, char**) {
4847
test();
4948
#if TEST_STD_VER >= 26

libcxx/test/std/containers/sequences/deque/deque.cons/size_value.pass.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void test(unsigned n, const T& x) {
3232
}
3333

3434
TEST_CONSTEXPR_CXX26 bool tests() {
35-
test<int, std::allocator<int> >(0, 5);
35+
test<int, std::allocator<int> >(0, 5);
3636
test<int, std::allocator<int> >(1, 10);
3737
test<int, std::allocator<int> >(10, 11);
3838
test<int, std::allocator<int> >(1023, -11);
@@ -51,7 +51,6 @@ TEST_CONSTEXPR_CXX26 bool tests() {
5151
return true;
5252
}
5353

54-
5554
int main(int, char**) {
5655
tests();
5756
#if TEST_STD_VER >= 26

libcxx/test/std/containers/sequences/deque/deque.cons/size_value_alloc.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void test(unsigned n, const T& x, const Allocator& a) {
3232
}
3333

3434
TEST_CONSTEXPR_CXX26 bool tests() {
35-
{
35+
{
3636
std::allocator<int> a;
3737
test(0, 5, a);
3838
test(1, 10, a);

0 commit comments

Comments
 (0)