aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-08-13 08:58:47 +0200
committerThomas Schmucker <ts@its1.de>2020-08-13 08:58:47 +0200
commitb46907ed64dd56415a4ca0d0dfac954003a14faf (patch)
tree2986ca8377f1071a33c5db68d8b33415aceb06d9
parent26ac3307fd93588a243a289ac569be8e8b2d4c9f (diff)
downloaddata-structures-b46907ed64dd56415a4ca0d0dfac954003a14faf.tar.gz
data-structures-b46907ed64dd56415a4ca0d0dfac954003a14faf.tar.bz2
data-structures-b46907ed64dd56415a4ca0d0dfac954003a14faf.zip
Aktiviere eine bessere Warnstufe des Compilers, wenn zwischen signed und unsigned Werten wild hin- und hergeschalten wird.
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 0c229d6..12d1935 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,6 @@
1.PHONY: all clean 1.PHONY: all clean
2 2
3CFLAGS=-O3 -Wall -Werror -Wno-unused-function -pedantic -std=c99 -g 3CFLAGS=-O3 -Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g
4 4
5all: list dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque 5all: list dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque
6 6