Skip to content

Commit 624b01e

Browse files
clang-format
1 parent e01f8a9 commit 624b01e

File tree

1 file changed

+2
-1
lines changed
  • libc/src/string/memory_utils

1 file changed

+2
-1
lines changed

libc/src/string/memory_utils/utils.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,8 @@ LIBC_INLINE void adjust(ptrdiff_t offset, T1 *__restrict &p1,
307307
template <size_t SIZE, typename T1, typename T2>
308308
void align_p1_to_next_boundary(T1 *__restrict &p1, T2 *__restrict &p2,
309309
size_t &count) {
310-
adjust(static_cast<ptrdiff_t>(distance_to_next_aligned<SIZE>(p1)), p1, p2, count);
310+
adjust(static_cast<ptrdiff_t>(distance_to_next_aligned<SIZE>(p1)), p1, p2,
311+
count);
311312
p1 = assume_aligned<SIZE>(p1);
312313
}
313314

0 commit comments

Comments
 (0)