From ad7f871ef9804f06b20ef7407e43b168440d359e Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 3 Dec 2021 22:52:41 +0000 Subject: [PATCH] Ignore a known warning Signed-off-by: falkTX --- plugins/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Makefile b/plugins/Makefile index 8fbb619..6afd653 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -788,7 +788,8 @@ $(BUILD_DIR)/AriaModules/%.cpp.o: AriaModules/%.cpp @echo "Compiling $<" $(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \ $(foreach m,$(ARIA_CUSTOM),$(call custom_module_names,$(m),Aria)) \ - -DpluginInstance=pluginInstance__Aria + -DpluginInstance=pluginInstance__Aria \ + -Wno-cast-function-type $(BUILD_DIR)/AS/%.cpp.o: AS/%.cpp -@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"