Skip to content

Commit 77d60c2

Browse files
committed
clang format
1 parent 22b63c9 commit 77d60c2

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

libcxx/test/std/containers/container.adaptors/flat.map/flat.map.access/index_key.pass.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ constexpr bool test() {
8383
return true;
8484
}
8585

86-
8786
int main(int, char**) {
8887
test();
8988
#if TEST_STD_VER >= 26

libcxx/test/std/containers/container.adaptors/flat.map/flat.map.cons/iter_iter.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ constexpr void test() {
101101

102102
template <template <class...> class KeyContainer, template <class...> class ValueContainer>
103103
constexpr void test_alloc() {
104-
using P = std::pair<int, short>;
105-
P ar[] = {{1, 1}, {1, 2}, {1, 3}, {2, 4}, {2, 5}, {3, 6}, {2, 7}, {3, 8}, {3, 9}};
104+
using P = std::pair<int, short>;
105+
P ar[] = {{1, 1}, {1, 2}, {1, 3}, {2, 4}, {2, 5}, {3, 6}, {2, 7}, {3, 8}, {3, 9}};
106106

107107
{
108108
// flat_map(InputIterator , InputIterator, const Allocator&)

libcxx/test/std/containers/container.adaptors/flat.map/incomplete_type.pass.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ struct A {
2929
// Implement the operator< required in order to instantiate flat_map<A, X>
3030
constexpr bool operator<(A const& L, A const& R) { return L.data < R.data; }
3131

32-
3332
constexpr bool test() {
3433
A a;
3534

0 commit comments

Comments
 (0)