[LINT] Fixed lint issues after clang-format update

This commit is contained in:
Gliniak
2024-06-13 20:56:56 +02:00
parent ce990e2828
commit ec267c348a
13 changed files with 21 additions and 28 deletions

View File

@@ -51,7 +51,7 @@ struct PatchDataEntry {
const PatchDataValue data;
PatchDataEntry(const uint32_t memory_address, const PatchDataValue patch_data)
: address(memory_address), data(patch_data){};
: address(memory_address), data(patch_data) {};
};
struct PatchInfoEntry {
@@ -86,7 +86,7 @@ struct PatchData {
uint8_t size;
PatchDataType type;
PatchData(uint8_t size_, PatchDataType type_) : size(size_), type(type_){};
PatchData(uint8_t size_, PatchDataType type_) : size(size_), type(type_) {};
};
class PatchDB {