Skip to content

Commit bbce9eb

Browse files
format
1 parent 64c92d1 commit bbce9eb

File tree

1 file changed

+1
-1
lines changed
  • libc/src/__support/CPP

1 file changed

+1
-1
lines changed

libc/src/__support/CPP/bit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ popcount(T value) {
283283
}
284284
#define ADD_SPECIALIZATION(TYPE, BUILTIN) \
285285
template <> \
286-
[[nodiscard]] LIBC_INLINE constexpr int popcount<TYPE>(TYPE value) { \
286+
[[nodiscard]] LIBC_INLINE constexpr int popcount<TYPE>(TYPE value) { \
287287
return BUILTIN(value); \
288288
}
289289
ADD_SPECIALIZATION(unsigned char, __builtin_popcount)

0 commit comments

Comments
 (0)