Просмотр исходного кода

fsp_srv: Add missing includes

Gets rid of relying on indirect inclusions.
Lioncash 8 лет назад
Родитель
Сommit
910ad2e110
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      src/core/hle/service/filesystem/fsp_srv.cpp

+ 5 - 0
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"