From 8a8ea65faeda6fb1fa45eb3734b9a3b991477cdb Mon Sep 17 00:00:00 2001 From: ameerj Date: Fri, 18 Mar 2022 23:48:22 -0400 Subject: common: Reduce unused includes --- src/common/fs/file.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/common/fs/file.cpp') diff --git a/src/common/fs/file.cpp b/src/common/fs/file.cpp index 274f57659..b89e785c2 100644 --- a/src/common/fs/file.cpp +++ b/src/common/fs/file.cpp @@ -4,12 +4,10 @@ #include "common/fs/file.h" #include "common/fs/fs.h" -#include "common/fs/path_util.h" #include "common/logging/log.h" #ifdef _WIN32 #include -#include #else #include #endif -- cgit v1.2.3 From 866b7c20a8958069a048ffa600155ec3cbd2e5f2 Mon Sep 17 00:00:00 2001 From: ameerj Date: Sat, 19 Mar 2022 01:50:03 -0400 Subject: general: Fix clang/gcc build errors --- src/common/fs/file.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/common/fs/file.cpp') diff --git a/src/common/fs/file.cpp b/src/common/fs/file.cpp index b89e785c2..5d71275ef 100644 --- a/src/common/fs/file.cpp +++ b/src/common/fs/file.cpp @@ -8,6 +8,7 @@ #ifdef _WIN32 #include +#include #else #include #endif -- cgit v1.2.3