diff options
| author | 2014-11-18 14:42:48 +0100 | |
|---|---|---|
| committer | 2014-11-18 14:42:48 +0100 | |
| commit | 9010b54a90c26f47d5002f03bb81d2d564de6c6b (patch) | |
| tree | c6a292e938eba90c8b92f32d42f90c5905f63d7f /src/common | |
| 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/common')
| -rw-r--r-- | src/common/symbols.h | 2 | ||||
| -rw-r--r-- | src/common/thread.h | 2 |
2 files changed, 2 insertions, 2 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 | { |