Skip to content

Commit 47c95c9

Browse files
clang-format
1 parent 9e64e2a commit 47c95c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libc/src/__support/big_int.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,10 @@ LIBC_INLINE constexpr cpp::array<word, N> shift(cpp::array<word, N> array,
296296
for (size_t index = 0; index < N; ++index) {
297297
const word part1 = safe_get_at(index + index_offset);
298298
const word part2 = safe_get_at(index + index_offset + 1);
299-
#pragma GCC diagnostic push
300-
#pragma GCC diagnostic ignored "-Wsign-conversion"
299+
#pragma GCC diagnostic push
300+
#pragma GCC diagnostic ignored "-Wsign-conversion"
301301
word &dst = out[at(index)];
302-
#pragma GCC diagnostic pop
302+
#pragma GCC diagnostic pop
303303
if (bit_offset == 0)
304304
dst = part1; // no crosstalk between parts.
305305
else if constexpr (direction == LEFT)

0 commit comments

Comments
 (0)