summaryrefslogtreecommitdiff
path: root/src/cache/ftcsbits.c
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2023-05-08 06:15:44 +0200
committerWerner Lemberg <wl@gnu.org>2023-05-08 06:21:16 +0200
commitd52166ae9d933f74249be2ae746ba9ca07de9c09 (patch)
tree6adf28ca3a5728b33f0741e3a79a1a951d315de5 /src/cache/ftcsbits.c
parentc8ae37bab35eeeb1d59bf11cada70ce8569f2a2c (diff)
downloadfreetype2-d52166ae9d933f74249be2ae746ba9ca07de9c09.tar.gz
[cache] Signature fixes.
* src/cache/ftcglyph.c, src/cache/ftcglyph.h (FTC_GNode_Compare): Remove redundant function. It is equivalent to `ftc_gnode_compare` and becomes completely meaningless with fixed signatures. Update all callers. * src/cache/ftcsbits.c, src/cache/ftcsbits.h (FTC_SNode_Compare): Remove redundant function. It is equivalent to `ftc_snode_compare` and becomes completely meaningless with fixed signatures. Update all callers.
Diffstat (limited to 'src/cache/ftcsbits.c')
-rw-r--r--src/cache/ftcsbits.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/cache/ftcsbits.c b/src/cache/ftcsbits.c
index ee9dab263..216a710e3 100644
--- a/src/cache/ftcsbits.c
+++ b/src/cache/ftcsbits.c
@@ -411,19 +411,4 @@
return result;
}
-
-#ifdef FTC_INLINE
-
- FT_LOCAL_DEF( FT_Bool )
- FTC_SNode_Compare( FTC_SNode snode,
- FTC_GQuery gquery,
- FTC_Cache cache,
- FT_Bool* list_changed )
- {
- return ftc_snode_compare( FTC_NODE( snode ), gquery,
- cache, list_changed );
- }
-
-#endif
-
/* END */