From e721c344ae2f7267bdf40508eda08bd6c3c6e491 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 5 Jul 2019 17:09:24 -0400 Subject: 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. --- src/core/reporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/reporter.cpp') 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) { namespace Core { -Reporter::Reporter(Core::System& system) : system(system) {} +Reporter::Reporter(System& system) : system(system) {} Reporter::~Reporter() = default; -- cgit v1.2.3