aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/hashtab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/hashtab.h')
-rw-r--r--src/nvim/hashtab.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/hashtab.h b/src/nvim/hashtab.h
index c268175b01..e4ad5e57fe 100644
--- a/src/nvim/hashtab.h
+++ b/src/nvim/hashtab.h
@@ -59,8 +59,6 @@ typedef struct hashtable_S {
size_t ht_used; /// number of items used
size_t ht_filled; /// number of items used or removed
int ht_locked; /// counter for hash_lock()
- bool ht_error; /// when set growing failed, can't add more
- /// items before growing works
hashitem_T *ht_array; /// points to the array, allocated when it's
/// not "ht_smallarray"
hashitem_T ht_smallarray[HT_INIT_SIZE]; /// initial array
@@ -69,4 +67,5 @@ typedef struct hashtable_S {
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "hashtab.h.generated.h"
#endif
+
#endif // NVIM_HASHTAB_H