From 9a20834b4ea2f084856faf05298a02653ab32400 Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nicolas.pope@utu.fi> Date: Mon, 8 Aug 2022 05:35:54 +0000 Subject: [PATCH] #63 Change nlohmann include path --- include/ftl/protocol/node.hpp | 2 +- include/ftl/uri.hpp | 2 +- src/universe.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ftl/protocol/node.hpp b/include/ftl/protocol/node.hpp index be580ad..ba10d6e 100644 --- a/include/ftl/protocol/node.hpp +++ b/include/ftl/protocol/node.hpp @@ -11,7 +11,7 @@ #include <vector> #include <ftl/uuid.hpp> #include <ftl/protocol/frameid.hpp> -#include <nlohmann/json_fwd.hpp> +#include <ftl/lib/nlohmann/json_fwd.hpp> namespace ftl { namespace net { diff --git a/include/ftl/uri.hpp b/include/ftl/uri.hpp index 1ce68fa..5af27c0 100644 --- a/include/ftl/uri.hpp +++ b/include/ftl/uri.hpp @@ -10,7 +10,7 @@ #include <string> #include <vector> #include <map> -#include <nlohmann/json_fwd.hpp> +#include <ftl/lib/nlohmann/json_fwd.hpp> namespace ftl { diff --git a/src/universe.hpp b/src/universe.hpp index f5013fe..4a8911e 100644 --- a/src/universe.hpp +++ b/src/universe.hpp @@ -25,7 +25,7 @@ #include <ftl/threads.hpp> #include <ftl/handle.hpp> -#include <nlohmann/json_fwd.hpp> +#include <ftl/lib/nlohmann/json_fwd.hpp> namespace ftl { namespace net { -- GitLab