mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-24 01:38:26 -05:00
Merge pull request #1291 from lioncash/default
hle/service: Default constructors and destructors in the cpp file where applicable
This commit is contained in:
@ -247,6 +247,8 @@ PL_U::PL_U() : ServiceFramework("pl:u") {
|
||||
}
|
||||
}
|
||||
|
||||
PL_U::~PL_U() = default;
|
||||
|
||||
void PL_U::RequestLoad(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestParser rp{ctx};
|
||||
const u32 shared_font_type{rp.Pop<u32>()};
|
||||
|
@ -13,7 +13,7 @@ namespace Service::NS {
|
||||
class PL_U final : public ServiceFramework<PL_U> {
|
||||
public:
|
||||
PL_U();
|
||||
~PL_U() = default;
|
||||
~PL_U() override;
|
||||
|
||||
private:
|
||||
void RequestLoad(Kernel::HLERequestContext& ctx);
|
||||
|
Reference in New Issue
Block a user