feat(tree): first attempt at balanced inserts

This commit is contained in:
Jef Roosens 2023-01-20 13:23:53 +01:00
parent 6a6c91c64d
commit f56ba20343
5 changed files with 100 additions and 16 deletions

View file

@ -27,7 +27,7 @@ INC_FLAGS := $(addprefix -I,$(INC_DIRS))
# object file is also recompiled if only a header is changed.
# -MP: generate a dummy target for every header file (according to the docs it
# prevents some errors when removing header files)
CFLAGS ?= -MMD -MP -Wall -Wextra
CFLAGS ?= -MMD -MP -Wall -Wextra -g
CFLAGS += $(INC_FLAGS)
.PHONY: all