comparison src/structs.h @ 21315:8de90d2965a3 v8.2.1208

patch 8.2.1208: build failure Commit: https://github.com/vim/vim/commit/49fe0d6b289ee640cf5c49b1704bbbd641a0237d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 14 15:47:23 2020 +0200 patch 8.2.1208: build failure Problem: Build failure. Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Jul 2020 16:00:06 +0200
parents 13b1567ae0c6
children 47f25a0c5a42
comparison
equal deleted inserted replaced
21314:3f34b98e3b3f 21315:8de90d2965a3
1248 { 1248 {
1249 long_u ht_mask; // mask used for hash value (nr of items in 1249 long_u ht_mask; // mask used for hash value (nr of items in
1250 // array is "ht_mask" + 1) 1250 // array is "ht_mask" + 1)
1251 long_u ht_used; // number of items used 1251 long_u ht_used; // number of items used
1252 long_u ht_filled; // number of items used + removed 1252 long_u ht_filled; // number of items used + removed
1253 int ht_changed; // incremented when adding or removing an item
1253 int ht_locked; // counter for hash_lock() 1254 int ht_locked; // counter for hash_lock()
1254 int ht_error; // when set growing failed, can't add more 1255 int ht_error; // when set growing failed, can't add more
1255 // items before growing works 1256 // items before growing works
1256 hashitem_T *ht_array; // points to the array, allocated when it's 1257 hashitem_T *ht_array; // points to the array, allocated when it's
1257 // not "ht_smallarray" 1258 // not "ht_smallarray"