diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-20 20:36:36 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-20 23:28:46 -0400 |
commit | 477eee3993fe366bcc4cf937de30259ec359adf0 (patch) | |
tree | 44ba7f27febf936fb8e6ca42f04799ef2a27b98a /src/yuzu/main.cpp | |
parent | 96463d0a55b11f73417941f2c29ca24f08196878 (diff) |
service/filesystem: Use forward declarations where applicable
Avoids the need to rebuild multiple source files if the filesystem code
headers change.
This also gets rid of a few instances of indirect inclusions being
relied upon
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 11d2331dff..3db3f9d988 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -27,7 +27,9 @@ #include "common/string_util.h" #include "core/core.h" #include "core/crypto/key_manager.h" +#include "core/file_sys/bis_factory.h" #include "core/file_sys/card_image.h" +#include "core/file_sys/registered_cache.h" #include "core/file_sys/vfs_real.h" #include "core/gdbstub/gdbstub.h" #include "core/loader/loader.h" |