From b46907ed64dd56415a4ca0d0dfac954003a14faf Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Thu, 13 Aug 2020 08:58:47 +0200 Subject: Aktiviere eine bessere Warnstufe des Compilers, wenn zwischen signed und unsigned Werten wild hin- und hergeschalten wird. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 0c229d6..12d1935 100644 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ .PHONY: all clean -CFLAGS=-O3 -Wall -Werror -Wno-unused-function -pedantic -std=c99 -g +CFLAGS=-O3 -Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g all: list dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque -- cgit v1.3