build: fix new clang-tidy lints

This commit is contained in:
outfoxxed 2025-11-15 04:28:07 -08:00
parent 0a36e3ed40
commit 1552aca3df
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E
12 changed files with 84 additions and 378 deletions

View file

@ -217,7 +217,7 @@ protected:
private:
[[nodiscard]] constexpr Owner* owner() const {
auto* self = std::bit_cast<char*>(this);
auto* self = std::bit_cast<char*>(this); // NOLINT
return std::bit_cast<Owner*>(self - offset()); // NOLINT
}