From 88d1a59ec76ae02387c8408432ead5f6aab33293 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 16 Jun 2023 10:54:30 -0700 Subject: [PATCH] Format PR 1228 with clang-format --- include/cxx.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/cxx.h b/include/cxx.h index 5d3b694c..00228255 100644 --- a/include/cxx.h +++ b/include/cxx.h @@ -659,7 +659,8 @@ typename Slice::iterator::difference_type Slice::iterator::operator-(const iterator &other) const noexcept { auto diff = std::distance(static_cast(other.pos), static_cast(this->pos)); - return diff / static_cast::iterator::difference_type>(this->stride); + return diff / static_cast::iterator::difference_type>( + this->stride); } template