mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-26 04:52:08 +00:00
Run clang-format to fix some inconsistent style
This commit is contained in:
@@ -9,10 +9,10 @@
|
||||
#include <variant>
|
||||
#include <vector>
|
||||
|
||||
#include "asm/symbol.hpp" // MAXSYMLEN
|
||||
|
||||
#include "platform.hpp" // SSIZE_MAX
|
||||
|
||||
#include "asm/symbol.hpp" // MAXSYMLEN
|
||||
|
||||
#define MAXSTRLEN 255
|
||||
|
||||
#define LEXER_BUF_SIZE 42 // TODO: determine a sane value for this
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user