فهرست منبع

address name shadowing with system

Chloe Marcec 4 سال پیش
والد
کامیت
9141816b10
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/core/hle/service/acc/async_context.cpp

+ 2 - 2
src/core/hle/service/acc/async_context.cpp

@@ -7,8 +7,8 @@
 #include "core/hle/service/acc/async_context.h"
 
 namespace Service::Account {
-IAsyncContext::IAsyncContext(Core::System& system)
-    : ServiceFramework{system, "IAsyncContext"}, compeletion_event{system.Kernel()} {
+IAsyncContext::IAsyncContext(Core::System& system_)
+    : ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} {
 
     Kernel::KAutoObject::Create(std::addressof(compeletion_event));
     compeletion_event.Initialize("IAsyncContext:CompletionEvent");