Update some whitespace after Hungarian prefixes were removed

Keep the parameter alignment and 100-char line limit
This commit is contained in:
Rangi
2021-04-19 16:47:39 -04:00
parent 6d0a3c75e9
commit 459773b3f0
3 changed files with 16 additions and 18 deletions

View File

@@ -17,14 +17,14 @@
#define MAXRPNLEN 1048576
struct Expression {
int32_t val; // If the expression's value is known, it's here
char *reason; // Why the expression is not known, if it isn't
bool isKnown; // Whether the expression's value is known
bool isSymbol; // Whether the expression represents a symbol
uint8_t *rpn; // Array of bytes serializing the RPN expression
uint32_t rpnCapacity; // Size of the `tRPN` buffer
uint32_t rpnLength; // Used size of the `tRPN` buffer
uint32_t rpnPatchSize; // Size the expression will take in the obj file
int32_t val; // If the expression's value is known, it's here
char *reason; // Why the expression is not known, if it isn't
bool isKnown; // Whether the expression's value is known
bool isSymbol; // Whether the expression represents a symbol
uint8_t *rpn; // Array of bytes serializing the RPN expression
uint32_t rpnCapacity; // Size of the `rpn` buffer
uint32_t rpnLength; // Used size of the `rpn` buffer
uint32_t rpnPatchSize; // Size the expression will take in the obj file
};
/*