Skip to content

Commit 84493f9

Browse files
committed
Fix formatting
1 parent f527096 commit 84493f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__iterator/bounded_iter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ struct __bounded_iter {
102102
// may be wrapped type, such that `operator<=` has side effects.
103103
pointer __begin_ptr = std::__to_address(__begin);
104104
pointer __current_ptr = std::__to_address(__current);
105-
pointer __end_ptr = std::__to_address(__end);
105+
pointer __end_ptr = std::__to_address(__end);
106106
_LIBCPP_ASSUME(__begin_ptr <= __current_ptr);
107107
_LIBCPP_ASSUME(__current_ptr <= __end_ptr);
108108
}

0 commit comments

Comments
 (0)