summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2023-06-17 11:21:02 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2023-06-17 11:21:02 +0100
commit5035408503741db9920daf62aacb9506a85ea92e (patch)
tree74857d96a9c999e131b3b927b6ef5620315c91a7
parent23102ff60157c85ff283f80e456bb124e74a4596 (diff)
downloadnetsurf-5035408503741db9920daf62aacb9506a85ea92e.tar.gz
netsurf-5035408503741db9920daf62aacb9506a85ea92e.tar.bz2
content: backing store: Remove unused typedef.
-rw-r--r--content/fs_backing_store.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c
index aff1534ff..a145c6fe1 100644
--- a/content/fs_backing_store.c
+++ b/content/fs_backing_store.c
@@ -89,14 +89,6 @@
#define BLOCK_USE_MAP_SIZE (1 << (BLOCK_ENTRY_COUNT - 3))
/**
- * The type used to store index values referring to store entries. Care
- * must be taken with this type as it is used to build address to
- * entry mapping so changing the size will have large impacts on
- * memory usage.
- */
-typedef uint16_t entry_index_t;
-
-/**
* The type used as a binary identifier for each entry derived from
* the URL. A larger identifier will have fewer collisions but
* requires proportionately more storage.