From 910ad2e11048f4d53751b556d6a2e3284909a892 Mon Sep 17 00:00:00 2001 From: Lioncash <mathew1800@gmail.com> Date: Thu, 19 Jul 2018 10:03:15 -0400 Subject: [PATCH] fsp_srv: Add missing includes Gets rid of relying on indirect inclusions. --- src/core/hle/service/filesystem/fsp_srv.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index c093c1183a..6ef022ce0c 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp @@ -3,8 +3,13 @@ // Refer to the license.txt file included. #include <cinttypes> +#include <cstring> +#include <string> #include <utility> +#include <vector> +#include "common/assert.h" +#include "common/common_types.h" #include "common/logging/log.h" #include "common/string_util.h" #include "core/core.h" -- GitLab