Update Names and Makefile

This commit is contained in:
Samuel Oberhofer 2022-06-18 14:52:55 +02:00
parent 70cdab95d1
commit e78b4527b1
4 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ BINARY = main
# Name of the binary for Release
FINAL = prototyp
# Object files
OBJS = Ware.o hashTable.o main.o
OBJS = Ware.o hashTableChaining.o main.o
# Compiler flags
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
# Linker flags

View File

@ -1,4 +1,4 @@
#include "hashTable.h"
#include "hashTableChaining.h"
#include <iostream>
HashTable::HashTable() {

View File

@ -1,5 +1,5 @@
#include "Ware.h"
#include "hashTable.h"
#include "hashTableChaining.h"
#include <iostream>
#include <string>