summaryrefslogtreecommitdiff
path: root/src/autofit/aftypes.h
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2023-02-07 07:37:07 +0100
committerWerner Lemberg <wl@gnu.org>2023-02-08 21:09:30 +0100
commit37bc7c260401e7e34b77d9e04d4c32bf760e1672 (patch)
tree179789fb20552d0dae82d719899259df006ef383 /src/autofit/aftypes.h
parentda9eb9c719bb128cb2e13c7cc9a7ded4abce448d (diff)
downloadfreetype2-37bc7c260401e7e34b77d9e04d4c32bf760e1672.tar.gz
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of warnings otherwise. * devel/ftoption.h, include/freetype/config/ftoption.h, include/freetype/internal/ftmemory.h, src/autofit/afhints.h, src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c, src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c, src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
Diffstat (limited to 'src/autofit/aftypes.h')
-rw-r--r--src/autofit/aftypes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/autofit/aftypes.h b/src/autofit/aftypes.h
index 3a0878e08..661519449 100644
--- a/src/autofit/aftypes.h
+++ b/src/autofit/aftypes.h
@@ -57,10 +57,10 @@ FT_BEGIN_HEADER
#ifdef FT_DEBUG_AUTOFIT
-extern int _af_debug_disable_horz_hints;
-extern int _af_debug_disable_vert_hints;
-extern int _af_debug_disable_blue_hints;
-extern void* _af_debug_hints;
+extern int af_debug_disable_horz_hints_;
+extern int af_debug_disable_vert_hints_;
+extern int af_debug_disable_blue_hints_;
+extern void* af_debug_hints_;
#endif /* FT_DEBUG_AUTOFIT */