From be4b2c7b99d9d54410ac193f8980d2fddd5a0178 Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <joseph@walton-rivers.uk> Date: Wed, 12 Jul 2023 22:39:35 +0100 Subject: [PATCH] move graph class to util --- include/fggl/assets/packed/adapter.hpp | 2 +- include/fggl/modules/manager.hpp | 2 +- include/fggl/{ds => util}/graph.hpp | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename include/fggl/{ds => util}/graph.hpp (100%) diff --git a/include/fggl/assets/packed/adapter.hpp b/include/fggl/assets/packed/adapter.hpp index ec5a841..974d48e 100644 --- a/include/fggl/assets/packed/adapter.hpp +++ b/include/fggl/assets/packed/adapter.hpp @@ -27,7 +27,7 @@ #include "fggl/filesystem/Finder.hpp" #include "fggl/assets/packed/direct.hpp" #include "fggl/data/storage.hpp" -#include "fggl/ds/graph.hpp" +#include "fggl/util/graph.hpp" namespace fggl::assets { diff --git a/include/fggl/modules/manager.hpp b/include/fggl/modules/manager.hpp index 346d0c2..0a80dda 100644 --- a/include/fggl/modules/manager.hpp +++ b/include/fggl/modules/manager.hpp @@ -21,7 +21,7 @@ #include "fggl/modules/module.hpp" #include "fggl/debug/logging.hpp" -#include "fggl/ds/graph.hpp" +#include "fggl/util/graph.hpp" #include "fggl/services/service.hpp" #include "fggl/services/factory.hpp" diff --git a/include/fggl/ds/graph.hpp b/include/fggl/util/graph.hpp similarity index 100% rename from include/fggl/ds/graph.hpp rename to include/fggl/util/graph.hpp -- GitLab