diff options
| author | 2023-07-21 21:22:51 -0700 | |
|---|---|---|
| committer | 2023-07-21 21:22:51 -0700 | |
| commit | 39edd2ff82674e7fae2ac3dc679f3de92174fa3e (patch) | |
| tree | 2b636c0ecf2af3c1753939298f5be6ac5b69f7f3 /src/core/core.h | |
| parent | Merge pull request #11123 from Morph1984/remove-mem-hungry-opts (diff) | |
| parent | core: remove remaining uses of dynamic_cast (diff) | |
| download | yuzu-39edd2ff82674e7fae2ac3dc679f3de92174fa3e.tar.gz yuzu-39edd2ff82674e7fae2ac3dc679f3de92174fa3e.tar.xz yuzu-39edd2ff82674e7fae2ac3dc679f3de92174fa3e.zip | |
Merge pull request #11129 from liamwhite/dynamic_cast
general: remove uses of dynamic_cast
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index 14b2f7785..c70ea1965 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -381,6 +381,9 @@ public: | |||
| 381 | [[nodiscard]] FileSys::ContentProvider& GetContentProvider(); | 381 | [[nodiscard]] FileSys::ContentProvider& GetContentProvider(); |
| 382 | [[nodiscard]] const FileSys::ContentProvider& GetContentProvider() const; | 382 | [[nodiscard]] const FileSys::ContentProvider& GetContentProvider() const; |
| 383 | 383 | ||
| 384 | [[nodiscard]] FileSys::ContentProviderUnion& GetContentProviderUnion(); | ||
| 385 | [[nodiscard]] const FileSys::ContentProviderUnion& GetContentProviderUnion() const; | ||
| 386 | |||
| 384 | [[nodiscard]] Service::FileSystem::FileSystemController& GetFileSystemController(); | 387 | [[nodiscard]] Service::FileSystem::FileSystemController& GetFileSystemController(); |
| 385 | [[nodiscard]] const Service::FileSystem::FileSystemController& GetFileSystemController() const; | 388 | [[nodiscard]] const Service::FileSystem::FileSystemController& GetFileSystemController() const; |
| 386 | 389 | ||