소스 검색

file_sys/patch_manager: Add missing includes

These includes were previously being satisfied indirectly.
Lioncash 8 년 전
부모
커밋
a859a35ec8
2개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/core/file_sys/patch_manager.cpp
  2. 1 0
      src/core/file_sys/patch_manager.h

+ 4 - 0
src/core/file_sys/patch_manager.cpp

@@ -2,6 +2,10 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#include <array>
+#include <cstddef>
+
+#include "common/logging/log.h"
 #include "core/file_sys/content_archive.h"
 #include "core/file_sys/control_metadata.h"
 #include "core/file_sys/patch_manager.h"

+ 1 - 0
src/core/file_sys/patch_manager.h

@@ -5,6 +5,7 @@
 #pragma once
 
 #include <map>
+#include <memory>
 #include <string>
 #include "common/common_types.h"
 #include "core/file_sys/nca_metadata.h"