Commit 9752df99 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Get rid of instr_off from expression_t.

parent 708c83e2
......@@ -481,7 +481,6 @@ typedef enum {
struct _expression_t {
expression_type_t type;
unsigned instr_off;
};
struct _parameter_t {
......
......@@ -1342,7 +1342,6 @@ static void *new_expression(parser_ctx_t *ctx, expression_type_t type, size_t si
expression_t *ret = parser_alloc(ctx, size ? size : sizeof(*ret));
ret->type = type;
ret->instr_off = 0;
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment