summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 16:03:15 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 16:03:17 +0200
commit910ad2e11048f4d53751b556d6a2e3284909a892 (patch)
treea0fd093c088045f99432d6ecb7b34d5dae719285 /src/core/hle/service/filesystem/fsp_srv.cpp
parentfsp_srv: Resolve sign-mismatch warnings in assertion comparisons (diff)
downloadyuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.gz
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.bz2
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.lz
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.xz
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.zst
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index c093c1183..6ef022ce0 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"