Merge pull request #1291 from lioncash/default
hle/service: Default constructors and destructors in the cpp file where applicable
This commit is contained in:
commit
1470b85af9
148 changed files with 291 additions and 45 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue