From 1895aefe22393aaa7504372962ce1360abad163e Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Tue, 15 Oct 2024 10:55:16 -0600 Subject: [PATCH] Supress vma compile warnings --- client/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 4acea9f..c441595 100644 --- a/client/Makefile +++ b/client/Makefile @@ -35,7 +35,7 @@ roleplay: $(OBJECTS) $(CPP) $(CFLAGS) $(LDFLAGS) -o $@ $^ %.o: %.cpp - $(CPP) $(CFLAGS) -c -o $@ $< + $(CPP) $(CFLAGS) -Wno-nullability-completeness -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unused-private-field -Wno-unused-variable -c -o $@ $< %.o: %.c $(CC) $(CFLAGS) -c -o $@ $<