reformat more files

This commit is contained in:
Martin Michelsen
2025-12-21 14:51:09 -08:00
parent 894ac6b8ff
commit a013b8c9d3
20 changed files with 241 additions and 453 deletions
+1 -3
View File
@@ -47,8 +47,6 @@ struct PatchFileChecksumRequest {
size(0),
response_received(false) {}
inline bool needs_update() const {
return !this->response_received ||
(this->crc32 != this->file->crc32) ||
(this->size != this->file->size);
return !this->response_received || (this->crc32 != this->file->crc32) || (this->size != this->file->size);
}
};