From ac8f99a20643e15ac8206808ea391227a2e3cb46 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sat, 27 Mar 2021 02:38:45 +0100 Subject: [PATCH] [libcalamares] Don't double-include FileSystem The partitioning header 'FileSystem.h' is for KPMCore support; it is already included by Global.h and guarded by ifdefs for KPMCore. Do not unconditionally include it from the implementation. --- src/libcalamares/partition/Global.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcalamares/partition/Global.cpp b/src/libcalamares/partition/Global.cpp index fb7b09aaf..a4d2ee979 100644 --- a/src/libcalamares/partition/Global.cpp +++ b/src/libcalamares/partition/Global.cpp @@ -9,7 +9,6 @@ */ #include "Global.h" -#include "FileSystem.h" #include "GlobalStorage.h" #include "JobQueue.h"