style fixes

This commit is contained in:
Adam Lederer 2024-08-04 21:59:30 -07:00 committed by tildearrow
parent 5c9fd69ac1
commit 15d47d0aae
3 changed files with 42 additions and 42 deletions

View file

@ -888,7 +888,7 @@ struct DivInstrumentPOD {
struct MemPatch {
MemPatch() :
data(nullptr)
data(NULL)
, offset(0)
, size(0) {
}
@ -902,9 +902,9 @@ struct MemPatch {
void clear();
bool calcDiff(const void* pre, const void* post, size_t size);
void applyAndReverse(void* target, size_t inputSize);
bool isValid() const { return size > 0; }
bool isValid() const { return size>0; }
uint8_t* data;
unsigned char* data;
size_t offset;
size_t size;
};