using functionning luke bst

This commit is contained in:
hugogogo
2022-06-20 19:05:52 +02:00
parent 8c181b6407
commit c7114c1db2
8 changed files with 1056 additions and 11 deletions

View File

@@ -32,7 +32,7 @@ RESET = "\e[0m"
NAME = containers
CC = clang++
CC = g++
EXT = cpp
CFLAGS = -Wall -Wextra -Werror $(INCLUDES)
@@ -67,11 +67,17 @@ HEADERS = colors.h \
equal.hpp \
lexicographical_compare.hpp \
pair.hpp \
bst.hpp \
bst_node.hpp \
bst_iterator.hpp \
\
vector.hpp
vector.hpp \
map.hpp
D_TEMPLATES = ./templates
TEMPLATES = vector.tpp \
TEMPLATES = bst.tpp \
\
vector.tpp \
map.tpp
D_TESTS = ./tests/includes