summaryrefslogtreecommitdiff
path: root/src/core/reporter.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-05 17:09:24 -0400
committerLioncash <mathew1800@gmail.com>2019-07-05 17:09:26 -0400
commite721c344ae2f7267bdf40508eda08bd6c3c6e491 (patch)
treed234c9e4f0b488c8045e6b851e7f79d46bc5f628 /src/core/reporter.h
parent6ec48af2223c2470ce342a707f63c67b72c6cee9 (diff)
core/reporter: Remove unnecessary namespace qualifiers
The Reporter class is part of the Core namespace, so the System class doesn't need to be qualified.
Diffstat (limited to 'src/core/reporter.h')
-rw-r--r--src/core/reporter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h
index 3de19c0f7..9487a11b6 100644
--- a/src/core/reporter.h
+++ b/src/core/reporter.h
@@ -18,7 +18,7 @@ namespace Core {
class Reporter {
public:
- explicit Reporter(Core::System& system);
+ explicit Reporter(System& system);
~Reporter();
void SaveCrashReport(u64 title_id, ResultCode result, u64 set_flags, u64 entry_point, u64 sp,
@@ -50,7 +50,7 @@ public:
private:
bool IsReportingEnabled() const;
- Core::System& system;
+ System& system;
};
} // namespace Core