Skip to content

Commit 240cbf4

Browse files
committed
format
1 parent 05ac8f2 commit 240cbf4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

libcxx/test/std/containers/container.adaptors/flat.multimap/flat.multimap.erasure/erase_if_exceptions.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ int main(int, char**) {
124124
}
125125
}
126126
{
127-
using M =
128-
std::flat_multimap<ThrowingAssignment, int, ThrowingComparator, std::deque<ThrowingAssignment>, std::deque<int>>;
127+
using M = std::
128+
flat_multimap<ThrowingAssignment, int, ThrowingComparator, std::deque<ThrowingAssignment>, std::deque<int>>;
129129
for (int first_throw = 1; first_throw < 99; ++first_throw) {
130130
for (int second_throw = 1; second_throw < 99; ++second_throw) {
131131
g_counter = {0, 0, 0};

libcxx/test/std/containers/container.adaptors/flat.multimap/flat.multimap.modifiers/insert_cv.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ void test() {
4949

5050
const VT v3(3, 3.5);
5151
r = m.insert(v3);
52-
assert(r == m.begin()+ 2);
52+
assert(r == m.begin() + 2);
5353
assert(m.size() == 3);
5454
assert(r->first == 3);
5555
assert(r->second == 3.5);
5656

5757
const VT v4(3, 4.5);
5858
r = m.insert(v4);
59-
assert(r == m.begin()+ 3);
59+
assert(r == m.begin() + 3);
6060
assert(m.size() == 4);
6161
assert(r->first == 3);
6262
assert(r->second == 4.5);

libcxx/test/std/containers/container.adaptors/flat.multimap/flat.multimap.operations/find_transparent.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ int main(int, char**) {
8888
{
8989
bool transparent_used = false;
9090
TransparentComparator c(transparent_used);
91-
std::flat_multimap<int, int, TransparentComparator> m(std::sorted_equivalent, {{1, 1}, {2, 2}, {3,3}, {3, 3}}, c);
91+
std::flat_multimap<int, int, TransparentComparator> m(std::sorted_equivalent, {{1, 1}, {2, 2}, {3, 3}, {3, 3}}, c);
9292
assert(!transparent_used);
9393
auto it = m.find(Transparent<int>{3});
9494
assert(it != m.end());

0 commit comments

Comments
 (0)