diff options
| author | 2014-11-18 14:42:48 +0100 | |
|---|---|---|
| committer | 2014-11-18 14:42:48 +0100 | |
| commit | 9010b54a90c26f47d5002f03bb81d2d564de6c6b (patch) | |
| tree | c6a292e938eba90c8b92f32d42f90c5905f63d7f /src | |
| parent | Merge pull request #200 from lioncash/statics (diff) | |
| parent | Remove extraneous semicolons (diff) | |
| download | yuzu-9010b54a90c26f47d5002f03bb81d2d564de6c6b.tar.gz yuzu-9010b54a90c26f47d5002f03bb81d2d564de6c6b.tar.xz yuzu-9010b54a90c26f47d5002f03bb81d2d564de6c6b.zip | |
Merge pull request #206 from lioncash/semicolon
Remove extraneous semicolons
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/symbols.h | 2 | ||||
| -rw-r--r-- | src/common/thread.h | 2 | ||||
| -rw-r--r-- | src/core/core_timing.h | 2 | ||||
| -rw-r--r-- | src/core/file_sys/archive_romfs.cpp | 2 | ||||
| -rw-r--r-- | src/core/file_sys/archive_romfs.h | 2 | ||||
| -rw-r--r-- | src/core/file_sys/archive_sdmc.h | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 2 | ||||
| -rw-r--r-- | src/core/system.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/common/symbols.h b/src/common/symbols.h index b13a8001a..4560f5240 100644 --- a/src/common/symbols.h +++ b/src/common/symbols.h | |||
| @@ -33,5 +33,5 @@ namespace Symbols | |||
| 33 | const std::string GetName(u32 _address); | 33 | const std::string GetName(u32 _address); |
| 34 | void Remove(u32 _address); | 34 | void Remove(u32 _address); |
| 35 | void Clear(); | 35 | void Clear(); |
| 36 | }; | 36 | } |
| 37 | 37 | ||
diff --git a/src/common/thread.h b/src/common/thread.h index f7ace21b4..5e7bc1f9c 100644 --- a/src/common/thread.h +++ b/src/common/thread.h | |||
| @@ -36,7 +36,7 @@ class Event | |||
| 36 | public: | 36 | public: |
| 37 | Event() | 37 | Event() |
| 38 | : is_set(false) | 38 | : is_set(false) |
| 39 | {}; | 39 | {} |
| 40 | 40 | ||
| 41 | void Set() | 41 | void Set() |
| 42 | { | 42 | { |
diff --git a/src/core/core_timing.h b/src/core/core_timing.h index 09fdf7a90..b197cf40c 100644 --- a/src/core/core_timing.h +++ b/src/core/core_timing.h | |||
| @@ -106,4 +106,4 @@ void SetClockFrequencyMHz(int cpuMhz); | |||
| 106 | int GetClockFrequencyMHz(); | 106 | int GetClockFrequencyMHz(); |
| 107 | extern int slicelength; | 107 | extern int slicelength; |
| 108 | 108 | ||
| 109 | }; // namespace | 109 | } // namespace |
diff --git a/src/core/file_sys/archive_romfs.cpp b/src/core/file_sys/archive_romfs.cpp index 3ea60134f..551913a42 100644 --- a/src/core/file_sys/archive_romfs.cpp +++ b/src/core/file_sys/archive_romfs.cpp | |||
| @@ -41,7 +41,7 @@ std::unique_ptr<File> Archive_RomFS::OpenFile(const Path& path, const Mode mode) | |||
| 41 | bool Archive_RomFS::CreateDirectory(const Path& path) const { | 41 | bool Archive_RomFS::CreateDirectory(const Path& path) const { |
| 42 | ERROR_LOG(FILESYS, "Attempted to create a directory in ROMFS."); | 42 | ERROR_LOG(FILESYS, "Attempted to create a directory in ROMFS."); |
| 43 | return false; | 43 | return false; |
| 44 | }; | 44 | } |
| 45 | 45 | ||
| 46 | /** | 46 | /** |
| 47 | * Open a directory specified by its path | 47 | * Open a directory specified by its path |
diff --git a/src/core/file_sys/archive_romfs.h b/src/core/file_sys/archive_romfs.h index 8d5715734..b0dd421b7 100644 --- a/src/core/file_sys/archive_romfs.h +++ b/src/core/file_sys/archive_romfs.h | |||
| @@ -26,7 +26,7 @@ public: | |||
| 26 | * Get the IdCode of the archive (e.g. RomFS, SaveData, etc.) | 26 | * Get the IdCode of the archive (e.g. RomFS, SaveData, etc.) |
| 27 | * @return IdCode of the archive | 27 | * @return IdCode of the archive |
| 28 | */ | 28 | */ |
| 29 | IdCode GetIdCode() const override { return IdCode::RomFS; }; | 29 | IdCode GetIdCode() const override { return IdCode::RomFS; } |
| 30 | 30 | ||
| 31 | /** | 31 | /** |
| 32 | * Open a file specified by its path, using the specified mode | 32 | * Open a file specified by its path, using the specified mode |
diff --git a/src/core/file_sys/archive_sdmc.h b/src/core/file_sys/archive_sdmc.h index 1f621b3f7..17b9209b4 100644 --- a/src/core/file_sys/archive_sdmc.h +++ b/src/core/file_sys/archive_sdmc.h | |||
| @@ -30,7 +30,7 @@ public: | |||
| 30 | * Get the IdCode of the archive (e.g. RomFS, SaveData, etc.) | 30 | * Get the IdCode of the archive (e.g. RomFS, SaveData, etc.) |
| 31 | * @return IdCode of the archive | 31 | * @return IdCode of the archive |
| 32 | */ | 32 | */ |
| 33 | IdCode GetIdCode() const override { return IdCode::SDMC; }; | 33 | IdCode GetIdCode() const override { return IdCode::SDMC; } |
| 34 | 34 | ||
| 35 | /** | 35 | /** |
| 36 | * Open a file specified by its path, using the specified mode | 36 | * Open a file specified by its path, using the specified mode |
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 867d1b89c..dd7c91d4f 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -87,7 +87,7 @@ public: | |||
| 87 | delete pool[handle - HANDLE_OFFSET]; | 87 | delete pool[handle - HANDLE_OFFSET]; |
| 88 | } | 88 | } |
| 89 | return error; | 89 | return error; |
| 90 | }; | 90 | } |
| 91 | 91 | ||
| 92 | bool IsValid(Handle handle); | 92 | bool IsValid(Handle handle); |
| 93 | 93 | ||
diff --git a/src/core/system.h b/src/core/system.h index 8f8ddf87b..b5f0c5a55 100644 --- a/src/core/system.h +++ b/src/core/system.h | |||
| @@ -30,4 +30,4 @@ void RunLoopFor(int cycles); | |||
| 30 | void RunLoopUntil(u64 global_cycles); | 30 | void RunLoopUntil(u64 global_cycles); |
| 31 | void Shutdown(); | 31 | void Shutdown(); |
| 32 | 32 | ||
| 33 | }; | 33 | } |