summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-19 10:03:15 -0400
committerGravatar Lioncash2018-07-19 10:03:17 -0400
commit910ad2e11048f4d53751b556d6a2e3284909a892 (patch)
treea0fd093c088045f99432d6ecb7b34d5dae719285 /src
parentfsp_srv: Resolve sign-mismatch warnings in assertion comparisons (diff)
downloadyuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.gz
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.tar.xz
yuzu-910ad2e11048f4d53751b556d6a2e3284909a892.zip
fsp_srv: Add missing includes
Gets rid of relying on indirect inclusions.
Diffstat (limited to 'src')
-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 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <cinttypes> 5#include <cinttypes>
6#include <cstring>
7#include <string>
6#include <utility> 8#include <utility>
9#include <vector>
7 10
11#include "common/assert.h"
12#include "common/common_types.h"
8#include "common/logging/log.h" 13#include "common/logging/log.h"
9#include "common/string_util.h" 14#include "common/string_util.h"
10#include "core/core.h" 15#include "core/core.h"