mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
White space
of the worst sort.
This commit is contained in:
parent
e6f243323e
commit
14cde99d6e
1 changed files with 5 additions and 5 deletions
|
@ -191,12 +191,12 @@ typedef struct ex_value_s {
|
||||||
|
|
||||||
typedef struct expr_s {
|
typedef struct expr_s {
|
||||||
struct expr_s *next; ///< the next expression in a block expression
|
struct expr_s *next; ///< the next expression in a block expression
|
||||||
expr_type type; ///< the type of the result of this expression
|
expr_type type; ///< the type of the result of this expression
|
||||||
int line; ///< source line that generated this expression
|
int line; ///< source line that generated this expression
|
||||||
string_t file; ///< source file that generated this expression
|
string_t file; ///< source file that generated this expression
|
||||||
int printid; ///< avoid duplicate output when printing
|
int printid; ///< avoid duplicate output when printing
|
||||||
unsigned paren:1; ///< the expression is enclosed in ()
|
unsigned paren:1; ///< the expression is enclosed in ()
|
||||||
unsigned rvalue:1; ///< the expression is on the right side of =
|
unsigned rvalue:1; ///< the expression is on the right side of =
|
||||||
union {
|
union {
|
||||||
ex_label_t label; ///< label expression
|
ex_label_t label; ///< label expression
|
||||||
ex_labelref_t labelref; ///< label reference expression (&)
|
ex_labelref_t labelref; ///< label reference expression (&)
|
||||||
|
|
Loading…
Reference in a new issue