summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-12-30 20:41:30 -0500
committerGravatar Lioncash2018-12-30 20:41:33 -0500
commit387bffda5e61959efc24165ba5464c7b4a431147 (patch)
tree2d0238a7f6bdda3624270c49474906c755055fde /src/core/arm/arm_interface.cpp
parentMerge pull request #1956 from lioncash/process-thread (diff)
downloadyuzu-387bffda5e61959efc24165ba5464c7b4a431147.tar.gz
yuzu-387bffda5e61959efc24165ba5464c7b4a431147.tar.xz
yuzu-387bffda5e61959efc24165ba5464c7b4a431147.zip
arm_interface: Remove unnecessary semicolon
Namespaces don't require the use of a semicolon. Silences a -Wextra-semi warning.
Diffstat (limited to 'src/core/arm/arm_interface.cpp')
-rw-r--r--src/core/arm/arm_interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp
index bcc812da4..f01cc4b6e 100644
--- a/src/core/arm/arm_interface.cpp
+++ b/src/core/arm/arm_interface.cpp
@@ -23,4 +23,4 @@ void ARM_Interface::LogBacktrace() {
23 fp = Memory::Read64(fp); 23 fp = Memory::Read64(fp);
24 } 24 }
25} 25}
26}; // namespace Core 26} // namespace Core