Skip to content

Commit d0af741

Browse files
committed
workaround clang format
1 parent 23fe5ca commit d0af741

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libcxx/test/std/containers/container.adaptors/flat.multiset/flat.multiset.cons/sorted_iter_iter.pass.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ constexpr void test() {
3333
{
3434
// flat_multiset(sorted_equivalent_t, InputIterator, InputIterator);
3535
// cpp17_input_iterator
36-
using M = std::flat_multiset<int, std::less<int>, KeyContainer<int>>;
36+
using M = std::flat_multiset<int, std::less<int>, KeyContainer<int>>;
37+
3738
int ar[] = {1, 2, 2, 4, 5};
3839
auto m = M(std::sorted_equivalent, cpp17_input_iterator<const int*>(ar), cpp17_input_iterator<const int*>(ar + 5));
3940
auto expected = M{1, 2, 2, 4, 5};

0 commit comments

Comments
 (0)