[ci] Upgrade to clang-format and clang-tidy 14 (NFC) (#4347)

This commit is contained in:
Tyler Veness
2022-08-16 15:25:04 -07:00
committed by GitHub
parent d45bcddd15
commit 340465c929
11 changed files with 117 additions and 65 deletions

View File

@@ -125,7 +125,9 @@ class WireDecoder {
bool ReadDouble(double* val);
/* Reads an ULEB128-encoded unsigned integer. */
bool ReadUleb128(uint64_t* val) { return wpi::ReadUleb128(m_is, val); }
bool ReadUleb128(uint64_t* val) {
return wpi::ReadUleb128(m_is, val);
}
bool ReadType(NT_Type* type);
bool ReadString(std::string* str);