Update Names and Makefile
This commit is contained in:
@@ -4,7 +4,7 @@ BINARY = main
|
|||||||
# Name of the binary for Release
|
# Name of the binary for Release
|
||||||
FINAL = prototyp
|
FINAL = prototyp
|
||||||
# Object files
|
# Object files
|
||||||
OBJS = Ware.o hashTable.o main.o
|
OBJS = Ware.o hashTableChaining.o main.o
|
||||||
# Compiler flags
|
# Compiler flags
|
||||||
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
|
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
|
||||||
# Linker flags
|
# Linker flags
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "hashTable.h"
|
#include "hashTableChaining.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
HashTable::HashTable() {
|
HashTable::HashTable() {
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
#include "Ware.h"
|
#include "Ware.h"
|
||||||
#include "hashTable.h"
|
#include "hashTableChaining.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user