CI: Bump various pre-commit hooks

This commit is contained in:
Thaddeus Crews 2025-03-29 12:56:52 -05:00
parent a210fe6dbd
commit 5edb235018
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
13 changed files with 81 additions and 89 deletions

View file

@ -44,11 +44,10 @@ class Span {
public:
static constexpr bool is_string = std::disjunction_v<
std::is_same<T, char>,
std::is_same<T, char16_t>,
std::is_same<T, char32_t>,
std::is_same<T, wchar_t>
>;
std::is_same<T, char>,
std::is_same<T, char16_t>,
std::is_same<T, char32_t>,
std::is_same<T, wchar_t>>;
_FORCE_INLINE_ constexpr Span() = default;
_FORCE_INLINE_ constexpr Span(const T *p_ptr, uint64_t p_len) :