From 844f36663a244032b7334a7f8f2a1f3073609719 Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Sat, 5 Apr 2025 16:33:10 -0400 Subject: [PATCH] Meta: Suppress compiler warnings --- System/Utilities/TrueType.HC | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/System/Utilities/TrueType.HC b/System/Utilities/TrueType.HC index 34e52c1..83ed0a9 100644 --- a/System/Utilities/TrueType.HC +++ b/System/Utilities/TrueType.HC @@ -1,3 +1,5 @@ +Silent(1); // This is needed to suppress "Function should return val" warnings for wrappers to non-HolyC functions + class stbtt__buf { U8* data; I32 cursor; @@ -58,4 +60,6 @@ U8* @stbtt_GetFontNameDefault(stbtt_fontinfo* font, I32* length) } } +Silent(0); + "truetype ";