From 01d1b5cdaff6f05aa62794816547deab977256e5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 23 Aug 2020 14:20:37 -0400 Subject: file_sys: Replace inclusions with forward declarations where applicable Same behavior, minus unnecessary inclusions where not necessary. --- src/core/file_sys/patch_manager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/core/file_sys/patch_manager.cpp') diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index 729dbb5f4..c228d253e 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp @@ -49,8 +49,7 @@ std::string FormatTitleVersion(u32 version, TitleVersionFormat format) { return fmt::format("v{}.{}.{}", bytes[3], bytes[2], bytes[1]); } -std::shared_ptr FindSubdirectoryCaseless(const std::shared_ptr dir, - std::string_view name) { +VirtualDir FindSubdirectoryCaseless(const VirtualDir dir, std::string_view name) { #ifdef _WIN32 return dir->GetSubdirectory(name); #else -- cgit v1.2.3