mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 00:24:12 +00:00
Nuke a dead field.
It looks like ex_temp_t.expr was never really used, and I have no idea what I had intended (not surprising after ~17 years).
This commit is contained in:
parent
2f2edae43b
commit
aaab18c9a7
2 changed files with 0 additions and 2 deletions
|
@ -91,7 +91,6 @@ typedef struct {
|
||||||
} ex_block_t;
|
} ex_block_t;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
struct expr_s *expr;
|
|
||||||
struct operand_s *op; ///< The operand for the temporary variable, if
|
struct operand_s *op; ///< The operand for the temporary variable, if
|
||||||
///< allocated
|
///< allocated
|
||||||
struct type_s *type; ///< The type of the temporary variable.
|
struct type_s *type; ///< The type of the temporary variable.
|
||||||
|
|
|
@ -426,7 +426,6 @@ copy_expr (expr_t *e)
|
||||||
*n = *e;
|
*n = *e;
|
||||||
n->line = pr.source_line;
|
n->line = pr.source_line;
|
||||||
n->file = pr.source_file;
|
n->file = pr.source_file;
|
||||||
n->e.temp.expr = copy_expr (e->e.temp.expr);
|
|
||||||
return n;
|
return n;
|
||||||
case ex_vector:
|
case ex_vector:
|
||||||
n = new_expr ();
|
n = new_expr ();
|
||||||
|
|
Loading…
Reference in a new issue