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

filesys/romfs: Remove unused includes

These inclusions aren't used at all within the public interface, so they
can be removed.
Lioncash 6 лет назад
Родитель
Сommit
d66ab2b8aa
2 измененных файлов с 2 добавлено и 4 удалено
  1. 2 0
      src/core/file_sys/romfs.cpp
  2. 0 4
      src/core/file_sys/romfs.h

+ 2 - 0
src/core/file_sys/romfs.cpp

@@ -2,6 +2,8 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#include <memory>
+
 #include "common/common_types.h"
 #include "common/swap.h"
 #include "core/file_sys/fsmitm_romfsbuild.h"

+ 0 - 4
src/core/file_sys/romfs.h

@@ -5,10 +5,6 @@
 #pragma once
 
 #include <array>
-#include <map>
-#include "common/common_funcs.h"
-#include "common/common_types.h"
-#include "common/swap.h"
 #include "core/file_sys/vfs.h"
 
 namespace FileSys {