feat(tree): first attempt at balanced inserts
This commit is contained in:
parent
6a6c91c64d
commit
f56ba20343
5 changed files with 100 additions and 16 deletions
2
Makefile
2
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Reference in a new issue