vbscript: Remove unused field.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Gabriel Ivăncescu 2019-12-10 15:41:41 +02:00 committed by Alexandre Julliard
parent a14281c089
commit 2dfcb31cf3
2 changed files with 0 additions and 4 deletions

View File

@ -1980,9 +1980,6 @@ HRESULT compile_procedure(script_ctx_t *script, const WCHAR *src, const WCHAR *d
desc->func_cnt = 1;
desc->funcs->entries[VBDISP_CALLGET] = &code->main_code;
desc->next = script->script_obj->procs;
script->script_obj->procs = desc;
*ret = desc;
return S_OK;
}

View File

@ -141,7 +141,6 @@ typedef struct {
size_t global_funcs_size;
class_desc_t *classes;
class_desc_t *procs;
script_ctx_t *ctx;
heap_pool_t heap;