Skip to content

Commit 0b96a92

Browse files
clang-format
1 parent ef1198b commit 0b96a92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__iterator/distance.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ using __iter_distance_t _LIBCPP_NODEBUG = typename iterator_traits<_Iter>::diffe
4242
#endif
4343

4444
template <class _InputIter, class _Sent>
45-
inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 __iter_distance_t<_InputIter>
46-
__distance(_InputIter __first, _Sent __last) {
45+
inline _LIBCPP_HIDE_FROM_ABI
46+
_LIBCPP_CONSTEXPR_SINCE_CXX17 __iter_distance_t<_InputIter> __distance(_InputIter __first, _Sent __last) {
4747
__iter_distance_t<_InputIter> __r(0);
4848
for (; __first != __last; ++__first)
4949
++__r;

0 commit comments

Comments
 (0)