mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 02:58:00 -05:00
core: Replace all instances of ResultCode with Result
This commit is contained in:
@ -153,7 +153,7 @@ class IRegistrar final : public ServiceFramework<IRegistrar> {
|
||||
friend class ARP_W;
|
||||
|
||||
public:
|
||||
using IssuerFn = std::function<ResultCode(u64, ApplicationLaunchProperty, std::vector<u8>)>;
|
||||
using IssuerFn = std::function<Result(u64, ApplicationLaunchProperty, std::vector<u8>)>;
|
||||
|
||||
explicit IRegistrar(Core::System& system_, IssuerFn&& issuer)
|
||||
: ServiceFramework{system_, "IRegistrar"}, issue_process_id{std::move(issuer)} {
|
||||
|
Reference in New Issue
Block a user