From 9ce6ec18982bae7208947b9afd8b0082b60bd0bc Mon Sep 17 00:00:00 2001 From: Isak Date: Sat, 17 Mar 2018 20:39:43 +0100 Subject: [PATCH] Update Main.cpp forgot to include libary stdlib.h for system function. --- src/Main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main.cpp b/src/Main.cpp index cd45cc2..6078e79 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -3,6 +3,7 @@ #include #include #include //for get_current_dir() and chdir() +#include //for system #include "headers/Functions.h" typedef std::string str_t;