summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-07-05 17:09:24 -0400
committerGravatar Lioncash2019-07-05 17:09:26 -0400
commite721c344ae2f7267bdf40508eda08bd6c3c6e491 (patch)
treed234c9e4f0b488c8045e6b851e7f79d46bc5f628
parentcore/reporter: Remove pessimizing move in GetHLERequestContextData() (diff)
downloadyuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.gz
yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.xz
yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.zip
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.
-rw-r--r--src/core/reporter.cpp2
-rw-r--r--src/core/reporter.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp
index 96b71037a..d79a9336d 100644
--- a/src/core/reporter.cpp
+++ b/src/core/reporter.cpp
@@ -183,7 +183,7 @@ json GetHLERequestContextData(Kernel::HLERequestContext& ctx) {
183 183
184namespace Core { 184namespace Core {
185 185
186Reporter::Reporter(Core::System& system) : system(system) {} 186Reporter::Reporter(System& system) : system(system) {}
187 187
188Reporter::~Reporter() = default; 188Reporter::~Reporter() = default;
189 189
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 {
18 18
19class Reporter { 19class Reporter {
20public: 20public:
21 explicit Reporter(Core::System& system); 21 explicit Reporter(System& system);
22 ~Reporter(); 22 ~Reporter();
23 23
24 void SaveCrashReport(u64 title_id, ResultCode result, u64 set_flags, u64 entry_point, u64 sp, 24 void SaveCrashReport(u64 title_id, ResultCode result, u64 set_flags, u64 entry_point, u64 sp,
@@ -50,7 +50,7 @@ public:
50private: 50private:
51 bool IsReportingEnabled() const; 51 bool IsReportingEnabled() const;
52 52
53 Core::System& system; 53 System& system;
54}; 54};
55 55
56} // namespace Core 56} // namespace Core