diff options
| author | 2018-07-24 04:47:26 -0700 | |
|---|---|---|
| committer | 2018-07-24 04:47:26 -0700 | |
| commit | 23e85b6b9f9b8f835944dc45e543206655c92ba0 (patch) | |
| tree | bdc20813bd7083fdb901bfb1e178dffc72ea2466 /src/core/loader/loader.h | |
| parent | Merge pull request #795 from lioncash/decl (diff) | |
| parent | core: Make converting constructors explicit where applicable (diff) | |
| download | yuzu-23e85b6b9f9b8f835944dc45e543206655c92ba0.tar.gz yuzu-23e85b6b9f9b8f835944dc45e543206655c92ba0.tar.xz yuzu-23e85b6b9f9b8f835944dc45e543206655c92ba0.zip | |
Merge pull request #797 from lioncash/explicit
core: Make converting constructors explicit where applicable
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 6f517ca8c..fbf11e5d0 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -79,7 +79,7 @@ enum class ResultStatus { | |||
| 79 | /// Interface for loading an application | 79 | /// Interface for loading an application |
| 80 | class AppLoader : NonCopyable { | 80 | class AppLoader : NonCopyable { |
| 81 | public: | 81 | public: |
| 82 | AppLoader(FileSys::VirtualFile file) : file(std::move(file)) {} | 82 | explicit AppLoader(FileSys::VirtualFile file) : file(std::move(file)) {} |
| 83 | virtual ~AppLoader() {} | 83 | virtual ~AppLoader() {} |
| 84 | 84 | ||
| 85 | /** | 85 | /** |