Move datastruct template implementations to header files

This commit is contained in:
2020-08-01 22:57:12 -04:00
parent e4e1fd09d6
commit b9843a5d99
16 changed files with 1167 additions and 1243 deletions

View File

@@ -13,6 +13,6 @@ cmake_minimum_required(VERSION 3.2)
# Define the project name
project(VectorDriver)
# Define source files
set(SRC driver.cpp vector.cpp)
set(SRC driver.cpp)
# Build an executable
add_executable(VectorDriver ${SRC})