From 75ebff907148b500d1d648d5b2b209a477aeabd8 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 13 Sep 2025 21:11:38 +0200 Subject: [PATCH] remove pointer arithmatic warnings, since they are just useful --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 987275e..a6eb012 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ LD ?= ld # setting default compilation flags # some of which are able to be overwritten, others are always appended CPPFLAGS ?= -CFLAGS ?= -O2 -Wall -Wextra -Wpedantic +CFLAGS ?= -O2 -Wall -Wextra -Wpedantic -Wno-pointer-arith LDFLAGS ?= -flto CFLAGS += -std=gnu99