Skip to content

Commit 0e1b7bf

Browse files
committed
Clang-Format :^)
1 parent c1291d0 commit 0e1b7bf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

libcxx/test/std/utilities/optional/iterator.pass.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ constexpr bool test_concepts() {
4747
constexpr bool test_types() {
4848
const std::optional<char> opt{'a'};
4949
std::optional<char> nonconst_opt{'n'};
50-
50+
5151
assert((std::is_same_v<typename decltype(opt.begin())::value_type, char>));
5252
assert((std::is_same_v<typename decltype(opt.begin())::reference, const char&>));
5353
assert((std::is_same_v<typename decltype(nonconst_opt.begin())::value_type, char>));
5454
assert((std::is_same_v<typename decltype(nonconst_opt.begin())::reference, char&>));
55-
return true;
55+
return true;
5656
}
5757

5858
constexpr bool test_size() {
@@ -112,7 +112,6 @@ constexpr bool test_reset() {
112112
return true;
113113
}
114114

115-
116115
int main(int, char**) {
117116
// 1: optional::iterator and optional const_iterator satisfy contiguous_iterator and random_access_iterator
118117
{

0 commit comments

Comments
 (0)