From a813c10e1c71318925f2e65f2b0926099485bbc4 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 3 Sep 2018 21:58:19 -0400 Subject: file_sys: Replace includes with forward declarations where applicable Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed. --- src/core/file_sys/bis_factory.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/core/file_sys/bis_factory.cpp') diff --git a/src/core/file_sys/bis_factory.cpp b/src/core/file_sys/bis_factory.cpp index 08a7cea5a..205492897 100644 --- a/src/core/file_sys/bis_factory.cpp +++ b/src/core/file_sys/bis_factory.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "core/file_sys/bis_factory.h" +#include "core/file_sys/registered_cache.h" namespace FileSys { @@ -13,6 +14,8 @@ BISFactory::BISFactory(VirtualDir nand_root_) usrnand_cache(std::make_shared( GetOrCreateDirectoryRelative(nand_root, "/user/Contents/registered"))) {} +BISFactory::~BISFactory() = default; + std::shared_ptr BISFactory::GetSystemNANDContents() const { return sysnand_cache; } -- cgit v1.2.3