From 47fb0dcc722e385dddca3070cde02c87fa71d30d Mon Sep 17 00:00:00 2001 From: Syntriax Date: Wed, 5 Jul 2023 15:56:56 +0300 Subject: [PATCH] fix: Build Issues Caused By Include Order --- src/headers.h | 2 -- src/main.cpp | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/headers.h b/src/headers.h index f38a480..00460f1 100644 --- a/src/headers.h +++ b/src/headers.h @@ -15,6 +15,4 @@ #include "GameOfLife.h" -#include "ConfigurationParser/ConfigurationParser.h" - // #endif diff --git a/src/main.cpp b/src/main.cpp index 20e40f0..1295234 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,5 @@ #include "headers.h" +#include "ConfigurationParser/ConfigurationParser.h" #define CONFIG_PATH "config.cfg"