summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-09-11 13:00:40 -0400
committerLioncash <mathew1800@gmail.com>2014-09-11 13:05:31 -0400
commitb06ec302d1051843228464656d3021aeec45eb07 (patch)
tree34a42b3bd004189822b142782f21d9e008f47fc9 /Source/Core/Common
parentc6f3424ab1c192a9d6e8e6c2e1f8335bc38344a8 (diff)
Remove some unnecessary semicolons
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/BreakPoints.h2
-rw-r--r--Source/Core/Common/NandPaths.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/BreakPoints.h b/Source/Core/Common/BreakPoints.h
index 006898cd3d..99ea0809ca 100644
--- a/Source/Core/Common/BreakPoints.h
+++ b/Source/Core/Common/BreakPoints.h
@@ -96,5 +96,5 @@ public:
TMemCheck *GetMemCheck(u32 address);
void Remove(u32 _Address);
- void Clear() { m_MemChecks.clear(); };
+ void Clear() { m_MemChecks.clear(); }
};
diff --git a/Source/Core/Common/NandPaths.cpp b/Source/Core/Common/NandPaths.cpp
index 0a394cb113..7428ff2449 100644
--- a/Source/Core/Common/NandPaths.cpp
+++ b/Source/Core/Common/NandPaths.cpp
@@ -104,4 +104,4 @@ void ReadReplacements(replace_v& replacements)
replacements.push_back(std::make_pair(letter, replacement));
}
-};
+}