From 85c4bd9dc974c3c6514b84c8f6f2bf0c529f5cf1 Mon Sep 17 00:00:00 2001 From: Alba Mendez Date: Wed, 9 Oct 2024 19:25:37 +0200 Subject: [PATCH] fix failing build current code in master fails to build because `Json.cpp` uses `std::filesystem` without including `` --- src/utils/Json.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/Json.cpp b/src/utils/Json.cpp index 68f05881..95e99af0 100644 --- a/src/utils/Json.cpp +++ b/src/utils/Json.cpp @@ -18,6 +18,7 @@ with this program. If not, see */ #include +#include #include "Json.h" #include "plugin-macros.generated.h"