Revert "style fixes"

This reverts commit 15d47d0aae.
This commit is contained in:
tildearrow 2024-08-19 02:49:14 -05:00
parent 73c61d9ac7
commit f1de0bf2b7
3 changed files with 42 additions and 42 deletions

View file

@ -888,7 +888,7 @@ struct DivInstrumentPOD {
struct MemPatch {
MemPatch() :
data(NULL)
data(nullptr)
, 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; }
unsigned char* data;
uint8_t* data;
size_t offset;
size_t size;
};