diff options
| author | 2016-09-18 18:01:46 -0700 | |
|---|---|---|
| committer | 2016-09-18 21:14:25 -0700 | |
| commit | 396a8d91a4423d9c793eeff0798d544613647511 (patch) | |
| tree | e0203961233db1ffcbbca2e15154d71d142c5822 /src/core/loader/loader.h | |
| parent | Tweak formatting settings (diff) | |
| download | yuzu-396a8d91a4423d9c793eeff0798d544613647511.tar.gz yuzu-396a8d91a4423d9c793eeff0798d544613647511.tar.xz yuzu-396a8d91a4423d9c793eeff0798d544613647511.zip | |
Manually tweak source formatting and then re-run clang-format
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 5f48d2ffe..fdfee835c 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -81,10 +81,8 @@ constexpr u32 MakeMagic(char a, char b, char c, char d) { | |||
| 81 | /// Interface for loading an application | 81 | /// Interface for loading an application |
| 82 | class AppLoader : NonCopyable { | 82 | class AppLoader : NonCopyable { |
| 83 | public: | 83 | public: |
| 84 | AppLoader(FileUtil::IOFile&& file) : file(std::move(file)) { | 84 | AppLoader(FileUtil::IOFile&& file) : file(std::move(file)) {} |
| 85 | } | 85 | virtual ~AppLoader() {} |
| 86 | virtual ~AppLoader() { | ||
| 87 | } | ||
| 88 | 86 | ||
| 89 | /** | 87 | /** |
| 90 | * Returns the type of this file | 88 | * Returns the type of this file |