summaryrefslogtreecommitdiffstats
path: root/src/dict.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-04 15:54:38 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-04 15:54:38 +0000
commit10d6f18b2f9090d19dd884827c4be59a20b446bf (patch)
treec6f52c09d8961e851e5728c88c8f6bf11cf8cb73 /src/dict.c
parent078a46161e8b1b30bf306d6c1f4f0af7c616a989 (diff)
patch 8.2.3997: Vim9: not enough testing for extend() and map()v8.2.3997
Problem: Vim9: not enough testing for extend() and map(). Solution: Add more test cases. Fix uncovered problems. Remove unused type fields.
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/dict.c b/src/dict.c
index 27cde11a3f..f39be72af7 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -109,8 +109,6 @@ dict_free_contents(dict_T *d)
hashtab_free_contents(&d->dv_hashtab);
free_type(d->dv_type);
d->dv_type = NULL;
- free_type(d->dv_decl_type);
- d->dv_decl_type = NULL;
}
/*