Removed the use of rp.MakeBuilder

Due to keeping the code style consistent in the yuzu codebase. `rb = rp.MakeBuilder(...)` was replaced with `rb{ctx, ...}`
This commit is contained in:
David Marcec 2018-09-19 15:09:59 +10:00
parent b6a4e19e06
commit cfbfad9ffe
6 changed files with 26 additions and 27 deletions

View file

@ -71,7 +71,7 @@ private:
LOG_WARNING(Service_SSL, "(STUBBED) called");
IPC::RequestParser rp{ctx};
IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0);
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
}