Run clang-format to fix some inconsistent style

This commit is contained in:
Rangi42
2024-03-07 10:22:40 -05:00
parent 84bedc7bbe
commit bf45ebb178
4 changed files with 9 additions and 8 deletions

View File

@@ -12,10 +12,10 @@
struct Symbol;
struct Expression {
int32_t val; // If the expression's value is known, it's here
std::string reason; // Why the expression is not known, if it isn't
bool isKnown; // Whether the expression's value is known at assembly time
bool isSymbol; // Whether the expression represents a symbol suitable for const diffing
int32_t val; // If the expression's value is known, it's here
std::string reason; // Why the expression is not known, if it isn't
bool isKnown; // Whether the expression's value is known at assembly time
bool isSymbol; // Whether the expression represents a symbol suitable for const diffing
std::vector<uint8_t> *rpn; // Bytes serializing the RPN expression
uint32_t rpnPatchSize; // Size the expression will take in the object file