Skip to content

Commit a5bb0c4

Browse files
committed
Formatting
1 parent d5927a7 commit a5bb0c4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
#include <type_traits>
2121
#include <utility>
2222

23-
template<typename T>
23+
template <typename T>
2424
constexpr bool test() {
2525
using Opt = std::optional<T>;
26-
using I = Opt::iterator;
27-
using CI = Opt::const_iterator;
26+
using I = Opt::iterator;
27+
using CI = Opt::const_iterator;
2828

2929
static_assert(std::three_way_comparable<I>);
3030
static_assert(std::three_way_comparable<CI>);
@@ -82,7 +82,6 @@ constexpr bool test() {
8282
return true;
8383
}
8484

85-
8685
constexpr bool test() {
8786
test<int>();
8887
test<char>();

0 commit comments

Comments
 (0)