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.
This commit is contained in:
Lioncash 2019-07-05 17:09:24 -04:00
parent 6e9c716272
commit 0756025102
2 changed files with 3 additions and 3 deletions

View file

@ -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;