From 7bfd0b31fd3b1e218f581374f3a64caad88d7ede Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Thu, 21 Feb 2019 19:44:16 -0500 Subject: [PATCH] suppress warnings about incompatible casts with function pointers Unfortunately we must rely on these in Purr Data. It's impossible to enumerate every single function signature, especially given some are dynamically loaded at runtime. --- pd/src/makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pd/src/makefile.in b/pd/src/makefile.in index 00cdf6e94..ac7bb8237 100644 --- a/pd/src/makefile.in +++ b/pd/src/makefile.in @@ -41,7 +41,7 @@ LDFLAGS = @LDFLAGS@ LIB = @PDLIB@ WARN_CFLAGS = -Wall -W -Wstrict-prototypes \ - -Wno-unused-parameter -Wno-parentheses -Wno-switch + -Wno-unused-parameter -Wno-parentheses -Wno-switch -Wno-cast-function-type #WARN_CFLAGS += -Werror=implicit-function-declaration ARCH_CFLAGS = -DPD -- GitLab