feat(heap): initially working insert
Some checks failed
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/test-mem Pipeline was successful
ci/woodpecker/pr/lint Pipeline failed

This commit is contained in:
Jef Roosens 2023-01-22 20:34:05 +01:00 committed by Chewing_Bever
parent 16b78b8431
commit c1ad26cf0c
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 161 additions and 23 deletions

View file

@ -25,7 +25,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
CFLAGS ?= -MMD -MP -g
VIETERCFLAGS := $(INC_FLAGS) $(CFLAGS) -Wall -Wextra
.PHONY: all